From eb7ba739b9b0e41cc95d513c5781ddcbccf98afb Mon Sep 17 00:00:00 2001 From: airman604 <4887927+airman604@users.noreply.github.com> Date: Mon, 14 Sep 2020 21:09:15 -0700 Subject: [PATCH] add powershell (snap) --- roles/common/tasks/main.yml | 1 + roles/common/tasks/powershell.yml | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 roles/common/tasks/powershell.yml diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml index 157e1cb..b538465 100644 --- a/roles/common/tasks/main.yml +++ b/roles/common/tasks/main.yml @@ -6,3 +6,4 @@ - include: ruby.yml tags=common,ruby - include: node.yml tags=common,node,cookie-monster - include: composer.yml tags=common,composer,magescan +- include: powershell.yml tags=common,powershell diff --git a/roles/common/tasks/powershell.yml b/roles/common/tasks/powershell.yml new file mode 100644 index 0000000..f393019 --- /dev/null +++ b/roles/common/tasks/powershell.yml @@ -0,0 +1,13 @@ +--- + - block: + + - name: 'powershell : install snap' + snap: + name: powershell + classic: yes + state: present + + tags: + - common + - powershell + \ No newline at end of file