ssm-services/services/lo.iface

21 lines
357 B
Plaintext
Raw Normal View History

#!/usr/bin/env ssm
2014-10-04 15:47:02 +00:00
cfg_iface="${service_name%%.*}"
service_type='oneshot'
service_command=( /usr/bin/ip link set "$cfg_iface" up )
2014-10-04 15:47:02 +00:00
ready() {
2014-10-04 15:47:02 +00:00
local iface="$1" timer='0' timeout='6'
2015-05-25 09:26:03 +00:00
until [[ "$(ip link show $iface up)" ]]; do
2015-01-19 13:59:09 +00:00
(( timer >= timeout )) && { return 1; }
(( timer++ ))
2014-10-04 15:47:02 +00:00
done
}
pre_stop() {
2014-10-04 15:47:02 +00:00
ip link set "${cfg_iface}" down
super_stop
2014-10-04 15:47:02 +00:00
}