1234567891011121314151617181920212223 |
- ---
- - hosts: nas
- become: true
- gather_facts: true
- vars:
- host_pkgs:
- - ansible
- host_bash_aliases:
- - user: root
- alias: snapraid-watch-log
- command: tail -f /tmp/snapRAID.log
- - user: root
- alias: restartvpn
- command: "cd ~/git/infra ; ansible-playbook plays/restart-vpn.yml ; cd - > /dev/null"
-
- - user: root
- alias: halogs
- command: "tail -n 50 -f /opt/homeassistant/home-assistant.log"
- roles:
- - common
|