Bump v1.10.0

This commit is contained in:
Greizgh 2019-09-09 21:27:44 +02:00
parent 8453091d63
commit a29a39591f
5 changed files with 10 additions and 3 deletions

View File

@ -16,7 +16,7 @@ Then:
```
git clone https://github.com/greizgh/bitwarden_rs-debian.git
cd bitwarden_rs-debian
./build.sh
./build.sh 1.10.0
```
## Post installation

View File

@ -13,7 +13,7 @@ if [ ! -d "$SRC" ]; then
fi
cd "$SRC" || exit
git fetch
git checkout "origin/$REF"
git checkout "$REF"
cd - || exit
# Prepare EnvFile

View File

@ -6,7 +6,12 @@ After=network.target
Type=simple
User=bitwarden
ExecStart=/usr/local/bin/bitwarden_rs
PrivateTmp=true
PrivateDevices=true
ProtectHome=true
ProtectSystem=strict
WorkingDirectory=/etc/bitwarden_rs
ReadWriteDirectories=/var/lib/bitwarden_rs
EnvironmentFile=/etc/bitwarden_rs/config.env
[Install]

2
debian/control vendored
View File

@ -2,6 +2,6 @@ Package: bitwarden-rs
Architecture: amd64
Maintainer: Greizgh <greizgh+bitwardenrs@ephax.org>
Priority: optional
Version: 1.9.1-1
Version: 1.10.0-1
Description: Unofficial Bitwarden compatible server written in Rust
Homepage: https://github.com/greizgh/bitwarden_rs-debian

2
debian/postinst vendored
View File

@ -1,2 +1,4 @@
#!/bin/sh
adduser --system --home /var/lib/bitwarden_rs bitwarden
chmod 600 /etc/bitwarden_rs/config.env
chmod 600 /etc/bitwarden_rs/Rocket.toml