diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-31 23:44:54 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-31 23:44:54 +0200 |
commit | 727ab17a644d52105746e18c301cf733b1181507 (patch) | |
tree | 71113c6efae3074899de965aee5489cb76362f8e /roles/yay | |
parent | downgrade Ansible (diff) | |
download | maintenance-727ab17a644d52105746e18c301cf733b1181507.tar.gz maintenance-727ab17a644d52105746e18c301cf733b1181507.zip |
move Ansible files to src/
Diffstat (limited to 'roles/yay')
-rw-r--r-- | roles/yay/meta/main.yml | 3 | ||||
-rw-r--r-- | roles/yay/tasks/main.yml | 16 |
2 files changed, 0 insertions, 19 deletions
diff --git a/roles/yay/meta/main.yml b/roles/yay/meta/main.yml deleted file mode 100644 index d708443..0000000 --- a/roles/yay/meta/main.yml +++ /dev/null @@ -1,3 +0,0 @@ -dependencies: - - role: common - - {role: pacman, when: has_pacman} diff --git a/roles/yay/tasks/main.yml b/roles/yay/tasks/main.yml deleted file mode 100644 index 42150bf..0000000 --- a/roles/yay/tasks/main.yml +++ /dev/null @@ -1,16 +0,0 @@ -- name: Upgrade packages - kewlfft.aur.aur: - use: yay - update_cache: true - upgrade: true - aur_only: true - register: yay_result - notify: reboot - -- name: Show yay result - ansible.builtin.debug: - var: yay_result - when: yay_result - -- name: Flush handlers - ansible.builtin.meta: flush_handlers |