mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-14 03:39:53 +03:00
11 lines
217 B
Bash
11 lines
217 B
Bash
#!/sbin/openrc-run
|
|
description="Initialize Amazon SSM Agent"
|
|
command="/usr/bin/amazon-ssm-agent"
|
|
command_background="true"
|
|
directory="/etc/amazon/ssm"
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
retry="15"
|
|
|
|
depend() {
|
|
need net
|
|
}
|