mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-09 07:41:11 +02:00
17 lines
384 B
Plaintext
17 lines
384 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
name="bitwarden_rs"
|
|
description="bitwarden_rs alternative bitwarden backend"
|
|
supervisor="supervise-daemon"
|
|
command="/usr/sbin/bitwarden_rs"
|
|
command_user="bitwarden_rs:bitwarden_rs"
|
|
output_log="/var/log/bitwarden_rs/access.log"
|
|
error_log="/var/log/bitwarden_rs/error.log"
|
|
directory=$DATA_FOLDER
|
|
export DATA_FOLDER
|
|
|
|
depend() {
|
|
need localmount net
|
|
after firewall
|
|
}
|