diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-10-14 21:30:02 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-10-14 21:30:02 +0200 |
commit | 1fe2776b26d6fe83e7bcd662386e6448754c7ca9 (patch) | |
tree | edfa8246a5d8631bd2139deae748caf54998af13 /apks/midr/midr.initd | |
parent | 307af8fd5a3e74ebcb64ac5bbe57493b59ead233 (diff) | |
download | apkbuilds-1fe2776b26d6fe83e7bcd662386e6448754c7ca9.tar.gz apkbuilds-1fe2776b26d6fe83e7bcd662386e6448754c7ca9.tar.bz2 apkbuilds-1fe2776b26d6fe83e7bcd662386e6448754c7ca9.zip |
feat: fix remote pathing
Diffstat (limited to 'apks/midr/midr.initd')
-rw-r--r-- | apks/midr/midr.initd | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/apks/midr/midr.initd b/apks/midr/midr.initd new file mode 100644 index 0000000..20a069f --- /dev/null +++ b/apks/midr/midr.initd @@ -0,0 +1,21 @@ +#!/sbin/openrc-run + +# Sample init.d file for alpine linux. + +name="midr" +command="/usr/bin/$name" +command_user=www-data:www-data +command_args="-d ${datadir} ${opts}" +command_background="yes" + +start_stop_daemon_args="--user www-data:www-data" +pidfile="/run/$name.pid" + +depend() { + need net + after firewall +} + +start_pre() { + checkpath -d -o $command_user "$datadir" +} |