commit 7cedd93d6f4863e13686e5bdd75e5e150e6de5f8 parent 03f9648ffe155a87199271f184fb4f322efe2a7d Author: minerva-jupiter <ryouturn@gmail.com> Date: Tue, 18 Aug 2026 16:36:19 +0900 fix(ansible): enable ceres host and apt autoremove Diffstat:
| M | ansible/inventory.ini | | | 2 | +- |
| M | ansible/roles/debian_base/tasks/main.yml | | | 1 | + |
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/ansible/inventory.ini b/ansible/inventory.ini @@ -12,7 +12,7 @@ github-runner ansible_host=192.168.0.135 zabbix01 ansible_host=192.168.0.148 [gentoo_hosts] -# ceres ansible_host=192.168.0.145 +ceres ansible_host=192.168.0.145 #[slackware_hosts] #slack-test ansible_host=192.168.0.150 diff --git a/ansible/roles/debian_base/tasks/main.yml b/ansible/roles/debian_base/tasks/main.yml @@ -2,3 +2,4 @@ apt: update_cache: yes upgrade: safe + autoremove: yes