19 lines
319 B
Bash
19 lines
319 B
Bash
#!/bin/sh
|
|
|
|
DIR=$(dirname "$(readlink -f "$0")")
|
|
. "$DIR/../env.sh"
|
|
|
|
|
|
# install nextcloud
|
|
case "$PM" in
|
|
apt)
|
|
sudo add-apt-repository -y ppa:phoerious/keepassxc
|
|
sudo apt-get update
|
|
sudo apt install -y keepassxc
|
|
;;
|
|
pacman)
|
|
sudo pacman -S --needed keepassxc
|
|
;;
|
|
esac
|
|
|