KASM-4608 Background kasm_printer_service in vnc_startup.sh

This commit is contained in:
Justin Travis 2023-08-01 12:16:01 -04:00
parent 91b7add249
commit f1c793c6cd
No known key found for this signature in database

View File

@ -297,9 +297,9 @@ function start_printer (){
if [[ ${KASM_SVC_PRINTER:-1} == 1 ]]; then
echo 'Starting printer service'
if [[ $DEBUG == true ]]; then
$STARTUPDIR/printer/kasm_printer_service --debug --directory $HOME/PDF --relay /tmp/printer
$STARTUPDIR/printer/kasm_printer_service --debug --directory $HOME/PDF --relay /tmp/printer &
else
$STARTUPDIR/printer/kasm_printer_service --directory $HOME/PDF --relay /tmp/printer
$STARTUPDIR/printer/kasm_printer_service --directory $HOME/PDF --relay /tmp/printer &
fi
KASM_PROCS['kasm_printer']=$!