add LOGS variable to relaunch.sh

This commit is contained in:
mischa 2022-12-07 18:58:05 +01:00
parent 46d0983c2a
commit 7e05e83022
1 changed files with 4 additions and 4 deletions

View File

@ -44,9 +44,9 @@ vmctl reload
sleep 10
mkfifo -m 600 /tmp/pipe_${1}
install -g mischa -m 600 -o mischa /dev/null /home/mischa/${1}.log
install -g mischa -m 600 -o mischa /dev/null ${LOGS}/${1}.log
echo -n "autoinstall(8) ${1}, log output /home/mischa/${1}.log... "
echo -n "autoinstall(8) ${1}, log output ${LOGS}/${1}.log... "
vmctl start -c ${1} < /tmp/pipe_${1} | while read line; do
printf '%s\n' "$line" >&2
@ -62,7 +62,7 @@ vmctl start -c ${1} < /tmp/pipe_${1} | while read line; do
#exit 1
#;;
esac
done > /tmp/pipe_${1} 2> /home/mischa/${1}.log
done > /tmp/pipe_${1} 2> ${LOGS}/${1}.log
echo "completed"
@ -80,7 +80,7 @@ vmctl start -c ${1} < /tmp/pipe_${1} | while read line; do
break
;;
esac
done > /tmp/pipe_${1} 2>> /home/mischa/${1}.log
done > /tmp/pipe_${1} 2>> ${LOGS}/${1}.log
rm -rf /tmp/pipe_${1}