aboutsummaryrefslogtreecommitdiffstats
path: root/testing/vault/vault.initd
diff options
context:
space:
mode:
authorMatthias Neugebauer <mtneug@mailbox.org>2019-03-21 17:55:46 +0100
committerKevin Daudt <kdaudt@alpinelinux.org>2019-03-23 16:28:31 +0000
commite3d2e8ab16019c63dde0af9b1f0dfeeccade9c2d (patch)
tree703a5cbf1832d178fab6d03761150152517bacef /testing/vault/vault.initd
parent3105f51a0f3482228c39a8cc49c27a2a4d7567d8 (diff)
downloadaports-e3d2e8ab16019c63dde0af9b1f0dfeeccade9c2d.tar.bz2
aports-e3d2e8ab16019c63dde0af9b1f0dfeeccade9c2d.tar.xz
testing/vault: move to community
Diffstat (limited to 'testing/vault/vault.initd')
-rw-r--r--testing/vault/vault.initd19
1 files changed, 0 insertions, 19 deletions
diff --git a/testing/vault/vault.initd b/testing/vault/vault.initd
deleted file mode 100644
index 2ed3152b34..0000000000
--- a/testing/vault/vault.initd
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/sbin/openrc-run
-
-VAULT_LOG_FILE="/var/log/${SVCNAME}.log"
-
-description="Vault is a tool for securely accessing secrets"
-command=/usr/sbin/${SVCNAME}
-command_args="${vault_opts}"
-command_background="true"
-start_stop_daemon_args="-w 100 --user ${SVCNAME}:${SVCNAME} --stdout $VAULT_LOG_FILE --stderr $VAULT_LOG_FILE"
-pidfile="/run/${SVCNAME}.pid"
-
-start_pre() {
- checkpath -f -m 0644 -o ${SVCNAME}:${SVCNAME} "$VAULT_LOG_FILE"
-}
-
-depend() {
- need net
- after firewall
-}