From 2c2f33589382559265cb4b88c17fd3cd81841fb1 Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Thu, 22 Mar 2018 03:21:07 +0100 Subject: [PATCH] win_psexec: Fix pslint issues (#37718) --- lib/ansible/modules/windows/win_psexec.ps1 | 27 ++++++---------------- test/sanity/pslint/ignore.txt | 1 - 2 files changed, 7 insertions(+), 21 deletions(-) diff --git a/lib/ansible/modules/windows/win_psexec.ps1 b/lib/ansible/modules/windows/win_psexec.ps1 index 6a3e1479da0..d491e1f0580 100644 --- a/lib/ansible/modules/windows/win_psexec.ps1 +++ b/lib/ansible/modules/windows/win_psexec.ps1 @@ -1,23 +1,10 @@ #!powershell -# This file is part of Ansible -# -# Copyright 2017, Dag Wieers (@dagwieers) -# -# Ansible is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Ansible is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with Ansible. If not, see . - -# WANT_JSON -# POWERSHELL_COMMON +# -*- coding: utf-8 -*- + +# Copyright: (c) 2017, Dag Wieers (@dagwieers) +# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) + +#Requires -Module Ansible.ModuleUtils.Legacy # See also: https://technet.microsoft.com/en-us/sysinternals/pxexec.aspx @@ -84,7 +71,7 @@ namespace Ansible.Command { } '@ -$util_type = Add-Type -TypeDefinition $util_def +Add-Type -TypeDefinition $util_def $arguments = "" diff --git a/test/sanity/pslint/ignore.txt b/test/sanity/pslint/ignore.txt index 1f83f458adc..dc4d278cf63 100644 --- a/test/sanity/pslint/ignore.txt +++ b/test/sanity/pslint/ignore.txt @@ -88,7 +88,6 @@ lib/ansible/modules/windows/win_pagefile.ps1 PSAvoidUsingWMICmdlet lib/ansible/modules/windows/win_pagefile.ps1 PSUseDeclaredVarsMoreThanAssignments lib/ansible/modules/windows/win_pagefile.ps1 PSUseSupportsShouldProcess lib/ansible/modules/windows/win_power_plan.ps1 PSUseDeclaredVarsMoreThanAssignments -lib/ansible/modules/windows/win_psexec.ps1 PSUseDeclaredVarsMoreThanAssignments lib/ansible/modules/windows/win_psmodule.ps1 PSAvoidUsingCmdletAliases lib/ansible/modules/windows/win_rabbitmq_plugin.ps1 PSAvoidUsingCmdletAliases lib/ansible/modules/windows/win_rabbitmq_plugin.ps1 PSAvoidUsingInvokeExpression