2014-09-30 05:33:51 +00:00
|
|
|
#!/usr/bin/env watchman
|
|
|
|
|
2014-09-30 05:37:06 +00:00
|
|
|
# Get hostname from /etc/hostname
|
2014-09-30 05:33:51 +00:00
|
|
|
if [[ -e "/etc/hostname" ]]; then
|
|
|
|
cfg_hostname="$(</etc/hostname)"
|
|
|
|
fi
|
|
|
|
|
2014-09-30 05:37:06 +00:00
|
|
|
[[ "$cfg_hostname" ]] || { cfg_hostname='localhost'; }
|
|
|
|
|
2014-09-30 05:33:51 +00:00
|
|
|
service_type='oneshot'
|
2015-01-08 09:25:38 +00:00
|
|
|
service_command='/usr/bin/hostname'
|
2015-09-04 13:47:37 +00:00
|
|
|
service_args=( "$cfg_hostname" )
|