fix version dependent commands

This commit is contained in:
Aaron Murray 2019-09-16 09:07:16 -05:00
parent dd779c39f9
commit cf90d07454

View File

@ -60,11 +60,11 @@ if dpkg -l openmediavault > /dev/null; then
install openmediavault
if [ ${version} -eq 5 ]; then
omv-confdbadm populate
elif [ ${version} -lt 5 ]; then
omv-initsystem
omv-mkconf interfaces
omv-mkconf issue
elif [ ${version} -lt 5 ]; then
omv-confdbadm populate
fi
fi
@ -87,9 +87,9 @@ if [ -f "${file}" ]; then
fi
wget --no-check-certificate ${url}/${file}
if [ -f "${file}" ]; then
if ! dpkg -i ${file}; then
if ! dpkg --install ${file}; then
echo "Installing other dependencies ..."
apt-get -f install
apt-get --fix-broken install
fi
echo "Updating repos ..."