diff --git a/fish_install.yml b/fish_install.yml new file mode 100644 index 0000000..a963f00 --- /dev/null +++ b/fish_install.yml @@ -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 +# \ No newline at end of file diff --git a/sonar-project.properties b/sonar-project.properties deleted file mode 100644 index 8e98922..0000000 --- a/sonar-project.properties +++ /dev/null @@ -1,2 +0,0 @@ -sonar.projectKey=wjones_updates_AYnaaRO3RhIriH2jtzo0 -sonar.qualitygate.wait=true