We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3fd2172 + 65edc69 commit 764c5deCopy full SHA for 764c5de
playbooks/site.yml
@@ -0,0 +1,3 @@
1
+---
2
+- hosts: all
3
+- import_playbook: ../static-assignments/common-del.yml
static-assignment/common-del.yml
@@ -0,0 +1,25 @@
+- name: update web, nfs and db servers
+ hosts: webservers, nfs, db
4
+ remote_user: ec2-user
5
+ become: yes
6
+ become_user: root
7
+ tasks:
8
+ - name: delete wireshark
9
+ yum:
10
+ name: wireshark
11
+ state: removed
12
+
13
+- name: update LB server
14
+ hosts: lb
15
+ remote_user: ubuntu
16
17
18
19
20
+ apt:
21
+ name: wireshark-qt
22
+ state: absent
23
+ autoremove: yes
24
+ purge: yes
25
+ autoclean: yes
playbooks/common.yml renamed to static-assignment/common.yml
0 commit comments