blob: b4ffe6487d13ddc3e7ca01e4119bcf8ba3281221 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sh
# PROVIDE: amazon-ssm-agent
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# amazon_ssm_agent_enable: Set to YES to enable the Amazon SSM Agent
. /etc/rc.subr
name="amazon_ssm_agent"
rcvar=amazon_ssm_agent_enable
load_rc_config $name
: ${amazon_ssm_agent_enable="NO"}
: ${amazon_ssm_agent_env="PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/home/ssm-user/bin"}
pidfile="/var/run/${name}.pid"
command="/usr/sbin/daemon"
command_args="-f -P ${pidfile} %%PREFIX%%/sbin/amazon-ssm-agent"
run_rc_command "$1"
|