-f to force a downgrade does not work
ChaosBlades opened this issue · 3 comments
iocage exec plex ./PMS_Updater.sh -fl /PlexMediaServer-1.22.3.4523-d0ce30438-FreeBSD-amd64.tar.bz2
sed: /Plex Media Server/Preferences.xml: No such file or directory
Already running version v1.23.2.4625-a83d2d0f9
Use -f to force install /PlexMediaServer-1.22.3.4523-d0ce30438-FreeBSD-amd64.tar.bz2
But... I did use -f... Also tried -lf, -f -l, and -l -f. Nothing works. Just keeps asking me to use -f when I already am.
Try this modification and LMK, near the bottom of the script is
} elif [ ! $FORCEUPDATE = 1 ] && [ $(verNum ``basename $LOCALINSTALLFILE``) -le $(verNum $CURRENTVER) ]; then {
try changing it to
} elif [ ! $FORCEUPDATE = 1 ]; then {
not sure a version check is needed if you're trying to force override......
Try this modification and LMK, near the bottom of the script is
} elif [ ! $FORCEUPDATE = 1 ] && [ $(verNum ``basename $LOCALINSTALLFILE``) -le $(verNum $CURRENTVER) ]; then {
try changing it to
} elif [ ! $FORCEUPDATE = 1 ]; then {
not sure a version check is needed if you're trying to force override......
This didn't resolve the issue. I am having the same problem, downgrading doesn't seem to be possible at all.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.