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