mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-05-11 22:23:56 +00: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 "${@}"
|