aboutsummaryrefslogtreecommitdiffstats
path: root/testing/vault/vault.initd
diff options
context:
space:
mode:
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
-}