aboutsummaryrefslogtreecommitdiffstats
path: root/roles/rc/templates
diff options
context:
space:
mode:
Diffstat (limited to 'roles/rc/templates')
-rw-r--r--roles/rc/templates/rc_openbsd.j215
1 files changed, 14 insertions, 1 deletions
diff --git a/roles/rc/templates/rc_openbsd.j2 b/roles/rc/templates/rc_openbsd.j2
index 30f1c0a..6e60807 100644
--- a/roles/rc/templates/rc_openbsd.j2
+++ b/roles/rc/templates/rc_openbsd.j2
@@ -1,11 +1,24 @@
#!/bin/ksh
-#
# managed by Ansible
daemon="{{ rc_cmd }}"
daemon_flags="{{ rc_args }}"
daemon_user="{{ rc_user }}"
+daemon_dir="{{ rc_dir }}"
+
+rc_bg="{{ "YES" if rc_dir is defined else "NO" }}"
+
+{% if rc_strictpexp is defined and rc_strictpexp %}
+pexp="${daemon} ${daemon_flags}"
+{% endif %}
. /etc/rc.d/rc.subr
+{% if rc_dir is defined %}
+rc_start() {
+ ${rcexec} "cd ${daemon_dir} ; pwd ; ${daemon} ${daemon_flags}"
+}
+{% endif %}
+
+
rc_cmd $1
remember that computers suck.