44a471f6ba
* Enable service integration tests for FreeBSD Change: Adds necessary rc file for freebsd, and gets tests passing for it. Test Plan: Ran test with `--remote freebsd/12.1` and `--remote freebsd/11.1`. Both passed. Signed-off-by: Rick Elrod <rick@elrod.me> * Update test/integration/targets/service/tasks/rc_setup.yml Co-Authored-By: Matt Clay <matt@mystile.com> * fix up comment Signed-off-by: Rick Elrod <rick@elrod.me> Co-authored-by: Matt Clay <matt@mystile.com>
16 lines
319 B
Bash
16 lines
319 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: ansible_test_service
|
|
# REQUIRE: FILESYSTEMS devfs
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: nojail shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ansible_test_service"
|
|
rcvar="ansible_test_service_enable"
|
|
command="/usr/sbin/${name}"
|
|
pidfile="/var/run/${name}.pid"
|
|
extra_commands=reload
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|