mirror of
https://github.com/dani-garcia/vaultwarden
synced 2024-11-17 07:22:04 +01:00
15 lines
246 B
Bash
Executable file
15 lines
246 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ -r /etc/vaultwarden.sh ]; then
|
|
. /etc/vaultwarden.sh
|
|
fi
|
|
|
|
if [ -d /etc/vaultwarden.d ]; then
|
|
for f in /etc/vaultwarden.d/*.sh; do
|
|
if [ -r $f ]; then
|
|
. $f
|
|
fi
|
|
done
|
|
fi
|
|
|
|
exec /vaultwarden "${@}"
|