Vu+ uno 4k
Image develop
In file backupsuite.sh, line 446 there is an error.
line 446:
if [ $SEARCH = "zero4k" -o $SEARCH "uno4k" -o $SEARCH "uno4kse" -o $SEARCH "ultimo4k" -o $SEARCH "solo4k" -o $SEARCH "duo4k" -o $SEARCH "duo4kse" ] ; then
The solution is:
if [ $SEARCH = "zero4k" -o $SEARCH = "uno4k" -o $SEARCH = "uno4kse" -o $SEARCH = "ultimo4k" -o $SEARCH = "solo4k" -o $SEARCH = "duo4k" -o $SEARCH = "duo4kse" ] ; then
(putting = before all vu+ model names)