11 lines
144 B
Bash
Executable File
11 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
# No environment variable
|
|
# $LANID = lan interface index
|
|
|
|
restart_host() {
|
|
local ARG=restart
|
|
base_call_initd 'host'
|
|
}
|
|
|
|
restart_host
|