Testing py-salt

This commit is contained in:
2025-05-26 09:46:51 +02:00
parent 88e7ad955a
commit a2e43778b8
15 changed files with 443 additions and 0 deletions

View File

@ -0,0 +1,29 @@
#!/bin/sh
# Salt API startup script
#
# PROVIDE: salt_api
# REQUIRE: LOGIN
# KEYWORD: shutdown
# Add the following to /etc/rc.conf[.local] to enable this service
#
# salt_api_enable (bool): Set to NO by default.
# Set it to YES to enable salt_api
#
. /etc/rc.subr
name=salt_api
rcvar=salt_api_enable
load_rc_config ${name}
: ${salt_api_enable:=NO}
command="%%PREFIX%%/bin/salt-api"
command_interpreter="%%PYTHON_CMD%%"
required_files="%%PREFIX%%/etc/salt"
command_args="-c ${required_files} -d"
run_rc_command "$1"