2017-07-13 16:09:42 +03:00
|
|
|
#!/usr/bin/env ssm
|
2014-09-30 09:33:51 +04:00
|
|
|
|
2014-09-30 09:37:06 +04:00
|
|
|
# Get hostname from /etc/hostname
|
2014-09-30 09:33:51 +04:00
|
|
|
if [[ -e "/etc/hostname" ]]; then
|
|
|
|
cfg_hostname="$(</etc/hostname)"
|
|
|
|
fi
|
|
|
|
|
2014-09-30 09:37:06 +04:00
|
|
|
[[ "$cfg_hostname" ]] || { cfg_hostname='localhost'; }
|
|
|
|
|
2014-09-30 09:33:51 +04:00
|
|
|
service_type='oneshot'
|
2017-12-10 20:44:17 +03:00
|
|
|
service_command=( /usr/bin/hostname "$cfg_hostname" )
|