28 lines
724 B
Bash
28 lines
724 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 podman volume exists ${dbvolume} ; then
|
||
|
echo "Error : DB volume ${dbvolume} already exists."
|
||
|
echo "Please remove it before a freshinstall, or continue with a standard installation."
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
if podman volume exists ${datavolume} ; then
|
||
|
echo "Error : DATA volume ${datavolume} already exists."
|
||
|
echo "Please remove it before a freshinstall, or continue with a standard installation."
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
podman volume create ${dbvolume}
|
||
|
podman volume create ${datavolume}
|
||
|
|
||
|
${ABSDIR}/10_install.sh
|