From 1736581fe691cd1c176862bccd5440f27b649c67 Mon Sep 17 00:00:00 2001 From: Wendell Jones Date: Mon, 2 Jun 2025 19:22:15 -0400 Subject: [PATCH] add yaml to install fish shell --- fish_install.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 fish_install.yaml diff --git a/fish_install.yaml b/fish_install.yaml new file mode 100644 index 0000000..fb71b80 --- /dev/null +++ b/fish_install.yaml @@ -0,0 +1,29 @@ +--- +- hosts: debianhosts + gather_facts: no + tasks: + - name: Update all installed packages using APT module + apt: + name: 'fish' + state: latest + update_cache: yes + only_upgrade: yes + register: apt_update_status + + # - name: Update all installed packages using APT module + # apt: + # name: '*' + # state: latest + # update_cache: yes + # only_upgrade: yes + # register: apt_update_status + + # - name: Remove packages not needed anymore + # apt: + # autoremove: yes + + # - name: Reboot when packages were updated + # reboot: + # post_reboot_delay: 60 + # when: apt_update_status.changed +#