All checks were successful
ci/woodpecker/push/linting Pipeline was successful
14 lines
326 B
YAML
14 lines
326 B
YAML
---
|
|
|
|
# install keepalived
|
|
- name: "install keepalived"
|
|
community.general.apk:
|
|
name: "keepalived"
|
|
update_cache: true
|
|
when: 'ansible_facts["os_family"] == "Alpine"'
|
|
|
|
- name: "install keepalived"
|
|
ansible.builtin.apt:
|
|
name: "keepalived"
|
|
cache_valid_time: 120
|
|
when: 'ansible_facts["os_family"] == "Debian"'
|