2017-07-13 13:09:42 +00:00
|
|
|
#!/usr/bin/env ssm
|
2015-01-27 07:16:07 +00:00
|
|
|
|
|
|
|
service_type='oneshot'
|
2017-07-13 13:09:42 +00:00
|
|
|
service_command=( /usr/bin/znet -d up )
|
2015-01-27 07:16:07 +00:00
|
|
|
|
2017-07-13 13:09:42 +00:00
|
|
|
ifaces=( 'eth0' 'warp' )
|
|
|
|
|
|
|
|
pre_stop() {
|
|
|
|
"$service_command" "${service_args[@]}" down
|
2015-01-27 07:16:07 +00:00
|
|
|
}
|