From bbd8228d21f78bb5f690c13f65df3dbe38257de6 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Wed, 18 Jun 2014 09:35:33 -0500 Subject: [PATCH] Rename some modules so they can have seperate doc stubs. --- windows/ping.ps1 | 30 ------------------------------ windows/{stat.ps1 => win_stat.ps1} | 0 2 files changed, 30 deletions(-) delete mode 100644 windows/ping.ps1 rename windows/{stat.ps1 => win_stat.ps1} (100%) diff --git a/windows/ping.ps1 b/windows/ping.ps1 deleted file mode 100644 index 6d1af14e9e3..00000000000 --- a/windows/ping.ps1 +++ /dev/null @@ -1,30 +0,0 @@ -#!powershell -# This file is part of Ansible -# -# 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 - -$params = Parse-Args $args; - -$data = 'pong'; -If ($params.data.GetType) -{ - $data = $params.data; -} - -$result = New-Object psobject; -Set-Attr $result "ping" $data; -echo $result | ConvertTo-Json; diff --git a/windows/stat.ps1 b/windows/win_stat.ps1 similarity index 100% rename from windows/stat.ps1 rename to windows/win_stat.ps1