aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/roles/apt
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-07-31 23:44:54 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-07-31 23:44:54 +0200
commit727ab17a644d52105746e18c301cf733b1181507 (patch)
tree71113c6efae3074899de965aee5489cb76362f8e /roles/apt
parentdowngrade Ansible (diff)
downloadmaintenance-727ab17a644d52105746e18c301cf733b1181507.tar.gz
maintenance-727ab17a644d52105746e18c301cf733b1181507.zip
move Ansible files to src/
Diffstat (limited to 'roles/apt')
-rw-r--r--roles/apt/meta/main.yml3
-rw-r--r--roles/apt/tasks/main.yml19
2 files changed, 0 insertions, 22 deletions
diff --git a/roles/apt/meta/main.yml b/roles/apt/meta/main.yml
deleted file mode 100644
index 4516fa1..0000000
--- a/roles/apt/meta/main.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-dependencies:
- - role: common
- - {role: etckeeper, when: etc_versioned}
diff --git a/roles/apt/tasks/main.yml b/roles/apt/tasks/main.yml
deleted file mode 100644
index 297307b..0000000
--- a/roles/apt/tasks/main.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-- name: Upgrade packages
- become: true
- ansible.builtin.apt:
- update_cache: true
- upgrade: full
- notify: reboot
-
-- name: Flush handlers
- ansible.builtin.meta: flush_handlers
-
-- name: Clean up dependencies
- become: true
- ansible.builtin.apt:
- autoremove: true
- purge: true
- notify: reboot
-
-- name: Flush handlers
- ansible.builtin.meta: flush_handlers