diff --git a/install_default_packages.yml b/install_default_packages.yml deleted file mode 100644 index 248499d..0000000 --- a/install_default_packages.yml +++ /dev/null @@ -1,14 +0,0 @@ ---- - -- hosts: localhost - connection: local - become: true - pre_tasks: - - - name: install updates (Ubuntu/Debian) - package: - name: - - python3 - state: latest - update_cache: yes - when: ansible_distribution in ["Ubuntu", "Debian"] \ No newline at end of file diff --git a/tasks/packages.yml b/tasks/packages.yml deleted file mode 100644 index c7b47ec..0000000 --- a/tasks/packages.yml +++ /dev/null @@ -1,8 +0,0 @@ - - name: install packages - package: - name: - - htop - - mc - - tmux - state: latest - update_cache: yes \ No newline at end of file diff --git a/upgrade.yml b/upgrade.yml deleted file mode 100644 index 0eca070..0000000 --- a/upgrade.yml +++ /dev/null @@ -1,12 +0,0 @@ ---- - -- hosts: localhost - connection: local - become: true - pre_tasks: - - - name: install updates (Ubuntu/Debian) - apt: - upgrade: dist - update_cache: yes - when: ansible_distribution in ["Ubuntu", "Debian"] \ No newline at end of file