16 lines
390 B
YAML
16 lines
390 B
YAML
listenAddressWebUI: 0.0.0.0:1337 # Listen on all addresses available, port 1337
|
|
logLevel: "INFO"
|
|
actions:
|
|
- title: Restart Plex
|
|
icon: smile
|
|
shell: docker restart plex
|
|
|
|
# This will send 1 ping
|
|
- title: Ping Google.com
|
|
shell: ping google.com -c 1
|
|
|
|
# Restart lightdm on host "overseer"
|
|
- title: restart lightdm
|
|
icon: poop
|
|
shell: ssh root@overseer 'service lightdm restart'
|