20 lines
611 B
Bash
20 lines
611 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
ABSDIR="$( dirname "$(readlink -f -- "$0")" )"
|
||
|
source ${ABSDIR}/../functions.sh
|
||
|
source ${ABSDIR}/vars.sh
|
||
|
|
||
|
ensure_pwd_is_scriptdir
|
||
|
ensure_not_root
|
||
|
|
||
|
ensure_variables_are_defined "$envvars"
|
||
|
|
||
|
if [[ -d ~/.local/share/containers/storage/volumes/${dbvolume} ]]; then
|
||
|
echo "Volume ${dbvolume} from previous installation already exists"
|
||
|
echo "Please remove them before fresh install, or try to continue with normal installation"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
podman volume create ${dbvolume} && \
|
||
|
podman unshare chown -R 999:999 `podman volume inspect --format '{{ .Mountpoint }}' ${dbvolume}`
|