Replies: 1 comment 1 reply
-
Also, my |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I had initially run the install script ~2 years ago from the host. Recently, the Android app stopped working and the suggested solution was to upgrade vaultwarden.
The update command,
bash -c "$(wget -qLO - https://github.com/community-scripts/ProxmoxVE/raw/main/ct/vaultwarden.sh)"
, ran in the CT, failed.First error
I then ran
cargo build --features "sqlite,mysql,postgresql" --release
myself and got:How I solved it
Ran
apt install pkg-config python3-dev default-libmysqlclient-dev build-essential
Second error
Re-ran the cargo command, but it failed again with:
How I solved it
Ran
apt install libpq-dev
Third error
Looking at the update script:
ProxmoxVE/ct/vaultwarden.sh
Lines 59 to 64 in eddacd7
/opt/vaultwarden/bin
isn't a directory a file.The update script should be like this instead:
Beta Was this translation helpful? Give feedback.
All reactions