From 9d79115a801bbe9d571a5c3a977580551cf34657 Mon Sep 17 00:00:00 2001 From: erin sims Date: Sat, 28 May 2022 23:57:59 +0000 Subject: [PATCH] i made an uninstall yaml file so that we could get mpd off other boxe --- playbooks/uninstall_mpd.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 playbooks/uninstall_mpd.yaml diff --git a/playbooks/uninstall_mpd.yaml b/playbooks/uninstall_mpd.yaml new file mode 100644 index 0000000..8c47a95 --- /dev/null +++ b/playbooks/uninstall_mpd.yaml @@ -0,0 +1,8 @@ +- hosts: all + gather_facts: false + vars: + tasks: + - name: remove mpd on hosts + apt: + name: mpd + state: absent