19 lines
333 B
Plaintext
19 lines
333 B
Plaintext
|
#!/usr/bin/env watchman
|
||
|
|
||
|
service_type='oneshot'
|
||
|
|
||
|
start() {
|
||
|
watchman.msg "Activating the loopback interface (lo)..."
|
||
|
ip link set lo up
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
watchman.status || {
|
||
|
watchman.err "$service_name is already disabled"
|
||
|
return 1
|
||
|
}
|
||
|
watchman.msg "Deactivating the loopback interface (lo)..."
|
||
|
ip link set lo down
|
||
|
watchman.stop
|
||
|
}
|