mirror of
https://github.com/clearlinux/WALinuxAgent.git
synced 2026-08-28 13:25:53 +00:00
19 lines
333 B
Bash
Executable File
19 lines
333 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# PROVIDE: waagent
|
|
# REQUIRE: sshd netif dhclient
|
|
# KEYWORD: nojail
|
|
|
|
. /etc/rc.subr
|
|
|
|
PATH=$PATH:/usr/local/bin:/usr/local/sbin
|
|
name="waagent"
|
|
rcvar="waagent_enable"
|
|
pidfile="/var/run/waagent.pid"
|
|
command="/usr/local/sbin/${name}"
|
|
command_interpreter="python"
|
|
command_args="start"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|