diff options
author | Egor Tensin <egor@tensin.name> | 2025-09-09 11:12:22 +0200 |
---|---|---|
committer | Egor Tensin <egor@tensin.name> | 2025-09-09 11:12:26 +0200 |
commit | f7178aedfd35c95c43c6a811775cb51e40ffd925 (patch) | |
tree | 01b2244c232afd3be8f74f6835bad11029317045 /src/roles/apt/tasks | |
parent | README: update (diff) | |
download | maintenance-f7178aedfd35c95c43c6a811775cb51e40ffd925.tar.gz maintenance-f7178aedfd35c95c43c6a811775cb51e40ffd925.zip |
repurpose the repo
It's no longer a stupid, archived Ansible project; I'm gonna use it to
run GitHub Actions to do maintenance on my stuff.
Diffstat (limited to 'src/roles/apt/tasks')
-rw-r--r-- | src/roles/apt/tasks/main.yml | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/roles/apt/tasks/main.yml b/src/roles/apt/tasks/main.yml deleted file mode 100644 index 297307b..0000000 --- a/src/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 |