Compare commits

..

2 Commits

Author SHA1 Message Date
ffd96d1de3 💡 Fix update role for xbps package manager
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing
2023-02-06 17:37:43 +01:00
e4bde9b433 💫 Unverbose 2023-02-06 17:33:25 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -17,5 +17,5 @@ steps:
commands:
- mkdir ~/.ssh && echo "$KEY" > ~/.ssh/id_rsa && chmod 600 -R ~/.ssh
- sed -i "1s/^/[all:vars]\nansible_become_pass = $PASS\n/" servers.ini
- unbuffer ansible-playbook -vvv site.yml -t update | cat
- unbuffer ansible-playbook site.yml -t update | cat

View File

@ -25,7 +25,7 @@
- name: Update, upgrade and autoremove xbps packages
become: true
shell: xbps-install -Suv && xbps-remove -ROo
shell: xbps-install -ASuvy && xbps-remove -ROoy
when: package_manager == 'xbps' or 'xbps' in group_names
- name: Update and upgrade apk packages