diff options
Diffstat (limited to 'test/integration/targets/win_shortcut/tasks/clean.yml')
-rw-r--r-- | test/integration/targets/win_shortcut/tasks/clean.yml | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/test/integration/targets/win_shortcut/tasks/clean.yml b/test/integration/targets/win_shortcut/tasks/clean.yml deleted file mode 100644 index 5fa892186b..0000000000 --- a/test/integration/targets/win_shortcut/tasks/clean.yml +++ /dev/null @@ -1,37 +0,0 @@ -# Test code for the file module. -# (c) 2017, Dag Wieers <dag@wieers.com> - -# 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 <http://www.gnu.org/licenses/>. - -- name: Clean up Ansible website link - win_file: - path: '%UserProfile%\Desktop\Ansible website.url' - state: absent - -- name: Clean up Registry Editor shortcut - win_file: - path: '%Public%\Desktop\Registry Editor.lnk' - state: absent - -- name: Clean up Shell path shortcut - win_file: - path: '%Public%\bin.lnk' - state: absent - -- name: Clean up Executable shortcut - win_file: - path: '%Public%\Desktop\cmd.lnk' - state: absent |