| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #
- # Integration Test Config: General
- #
- listenAddressSingleHTTPFrontend: 0.0.0.0:1337
- logLevel: "DEBUG"
- checkForUpdates: false
- actions:
- - title: Ping Google.com
- shell: ping google.com -c 1
- icon: ping
- - title: restart lightdm
- icon: poop
- shell: ssh root@overseer 'service lightdm restart'
- - title: sleep 2 seconds
- shell: sleep 2
- icon: "🥱"
- - title: sleep 5 seconds (timeout)
- shell: sleep 5
- icon: "😪"
- - title: dir-popup
- shell: dir
- popupOnStart: execution-dialog-stdout-only
- - title: cd-passive
- shell: cd
- - title: "Run Ansible Playbook"
- icon: "🇦"
- shell: ansible-playbook -i /etc/hosts /root/myRepo/myPlaybook.yaml
- timeout: 120
- - title: Restart Plex
- icon: smile
- shell: docker restart plex
|