Initial commit

This commit is contained in:
2024-04-28 08:31:12 +02:00
parent c784018463
commit ad29df951a
9 changed files with 712 additions and 1 deletions

22
openbsd/impermanence.rc Executable file
View File

@@ -0,0 +1,22 @@
#!/bin/ksh
#
daemon="/usr/local/bin/impermanence"
. /etc/rc.d/rc.subr
rc_reload=NO
rc_start() {
$daemon ${daemon_flags} start
}
rc_stop() {
$daemon ${daemon_flags} stop
}
rc_check() {
$daemon ${daemon_flags} status
}
rc_cmd $1