diff --git a/src/ubuntu/install/brave/custom_startup.sh b/src/ubuntu/install/brave/custom_startup.sh index a4cf851..4ca0c0d 100644 --- a/src/ubuntu/install/brave/custom_startup.sh +++ b/src/ubuntu/install/brave/custom_startup.sh @@ -57,6 +57,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/chrome/custom_startup.sh b/src/ubuntu/install/chrome/custom_startup.sh index a86870a..9902430 100644 --- a/src/ubuntu/install/chrome/custom_startup.sh +++ b/src/ubuntu/install/chrome/custom_startup.sh @@ -57,6 +57,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/chromium/custom_startup.sh b/src/ubuntu/install/chromium/custom_startup.sh index 5cfe44a..46d284c 100644 --- a/src/ubuntu/install/chromium/custom_startup.sh +++ b/src/ubuntu/install/chromium/custom_startup.sh @@ -56,7 +56,9 @@ kasm_startup() { fi if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then - + + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/dind/custom_startup.sh b/src/ubuntu/install/dind/custom_startup.sh index e5b9ddd..1f723eb 100644 --- a/src/ubuntu/install/dind/custom_startup.sh +++ b/src/ubuntu/install/dind/custom_startup.sh @@ -55,6 +55,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -68,6 +70,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/dind_rootless/custom_startup.sh b/src/ubuntu/install/dind_rootless/custom_startup.sh index fab288d..24e5d4e 100644 --- a/src/ubuntu/install/dind_rootless/custom_startup.sh +++ b/src/ubuntu/install/dind_rootless/custom_startup.sh @@ -55,6 +55,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -68,6 +70,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/discord/custom_startup.sh b/src/ubuntu/install/discord/custom_startup.sh index 98c5abb..e853b0a 100644 --- a/src/ubuntu/install/discord/custom_startup.sh +++ b/src/ubuntu/install/discord/custom_startup.sh @@ -56,6 +56,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/doom/custom_startup.sh b/src/ubuntu/install/doom/custom_startup.sh index b5b5243..2a649f5 100644 --- a/src/ubuntu/install/doom/custom_startup.sh +++ b/src/ubuntu/install/doom/custom_startup.sh @@ -55,6 +55,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/edge/custom_startup.sh b/src/ubuntu/install/edge/custom_startup.sh index 9220a0c..76805f7 100644 --- a/src/ubuntu/install/edge/custom_startup.sh +++ b/src/ubuntu/install/edge/custom_startup.sh @@ -59,6 +59,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/firefox/custom_startup.sh b/src/ubuntu/install/firefox/custom_startup.sh index c78a3ef..4a6d0a3 100644 --- a/src/ubuntu/install/firefox/custom_startup.sh +++ b/src/ubuntu/install/firefox/custom_startup.sh @@ -51,6 +51,9 @@ kasm_startup() { fi if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -63,6 +66,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/gimp/custom_startup.sh b/src/ubuntu/install/gimp/custom_startup.sh index 5060386..9487ada 100644 --- a/src/ubuntu/install/gimp/custom_startup.sh +++ b/src/ubuntu/install/gimp/custom_startup.sh @@ -55,7 +55,9 @@ kasm_startup() { fi if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then - + + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/horizon/custom_startup.sh b/src/ubuntu/install/horizon/custom_startup.sh index c3cc730..d9515e5 100644 --- a/src/ubuntu/install/horizon/custom_startup.sh +++ b/src/ubuntu/install/horizon/custom_startup.sh @@ -58,6 +58,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -72,6 +74,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/insomnia/custom_startup.sh b/src/ubuntu/install/insomnia/custom_startup.sh index 36c185a..aebd7e6 100644 --- a/src/ubuntu/install/insomnia/custom_startup.sh +++ b/src/ubuntu/install/insomnia/custom_startup.sh @@ -56,6 +56,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/libre_office/custom_startup.sh b/src/ubuntu/install/libre_office/custom_startup.sh index d8582d9..0b5dcdc 100644 --- a/src/ubuntu/install/libre_office/custom_startup.sh +++ b/src/ubuntu/install/libre_office/custom_startup.sh @@ -56,6 +56,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/maltego/custom_startup.sh b/src/ubuntu/install/maltego/custom_startup.sh index 0432b52..355ee28 100644 --- a/src/ubuntu/install/maltego/custom_startup.sh +++ b/src/ubuntu/install/maltego/custom_startup.sh @@ -55,6 +55,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -68,6 +70,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/only_office/custom_startup.sh b/src/ubuntu/install/only_office/custom_startup.sh index 4b6706e..959a852 100644 --- a/src/ubuntu/install/only_office/custom_startup.sh +++ b/src/ubuntu/install/only_office/custom_startup.sh @@ -56,6 +56,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/postman/custom_startup.sh b/src/ubuntu/install/postman/custom_startup.sh index febdb0d..d27a73e 100644 --- a/src/ubuntu/install/postman/custom_startup.sh +++ b/src/ubuntu/install/postman/custom_startup.sh @@ -56,6 +56,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/rdesktop/custom_startup.sh b/src/ubuntu/install/rdesktop/custom_startup.sh index 46bfe03..1db7c32 100644 --- a/src/ubuntu/install/rdesktop/custom_startup.sh +++ b/src/ubuntu/install/rdesktop/custom_startup.sh @@ -54,7 +54,9 @@ kasm_startup() { fi if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then - + + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/realvnc_vncviewer/custom_startup.sh b/src/ubuntu/install/realvnc_vncviewer/custom_startup.sh index 6e75912..5240232 100644 --- a/src/ubuntu/install/realvnc_vncviewer/custom_startup.sh +++ b/src/ubuntu/install/realvnc_vncviewer/custom_startup.sh @@ -55,6 +55,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -68,6 +70,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/remmina/custom_startup.sh b/src/ubuntu/install/remmina/custom_startup.sh index 70644f8..4bc7833 100644 --- a/src/ubuntu/install/remmina/custom_startup.sh +++ b/src/ubuntu/install/remmina/custom_startup.sh @@ -68,6 +68,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -82,6 +84,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/signal/custom_startup.sh b/src/ubuntu/install/signal/custom_startup.sh index 300a8a0..34113ed 100644 --- a/src/ubuntu/install/signal/custom_startup.sh +++ b/src/ubuntu/install/signal/custom_startup.sh @@ -56,6 +56,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ]; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/slack/custom_startup.sh b/src/ubuntu/install/slack/custom_startup.sh index 659ffc0..0a0d293 100644 --- a/src/ubuntu/install/slack/custom_startup.sh +++ b/src/ubuntu/install/slack/custom_startup.sh @@ -56,6 +56,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/steam/custom_startup.sh b/src/ubuntu/install/steam/custom_startup.sh index a91c0ee..a5464e3 100644 --- a/src/ubuntu/install/steam/custom_startup.sh +++ b/src/ubuntu/install/steam/custom_startup.sh @@ -56,6 +56,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/sublime_text/custom_startup.sh b/src/ubuntu/install/sublime_text/custom_startup.sh index 875a93c..7c766bf 100644 --- a/src/ubuntu/install/sublime_text/custom_startup.sh +++ b/src/ubuntu/install/sublime_text/custom_startup.sh @@ -56,6 +56,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/teams/custom_startup.sh b/src/ubuntu/install/teams/custom_startup.sh index a156107..70605d6 100644 --- a/src/ubuntu/install/teams/custom_startup.sh +++ b/src/ubuntu/install/teams/custom_startup.sh @@ -56,6 +56,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/telegram/custom_startup.sh b/src/ubuntu/install/telegram/custom_startup.sh index 9d4aff5..fa17ae3 100644 --- a/src/ubuntu/install/telegram/custom_startup.sh +++ b/src/ubuntu/install/telegram/custom_startup.sh @@ -60,6 +60,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -73,6 +75,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/terminal/custom_startup.sh b/src/ubuntu/install/terminal/custom_startup.sh index fe86420..1cf28de 100644 --- a/src/ubuntu/install/terminal/custom_startup.sh +++ b/src/ubuntu/install/terminal/custom_startup.sh @@ -56,6 +56,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -70,6 +72,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/thunderbird/custom_startup.sh b/src/ubuntu/install/thunderbird/custom_startup.sh index 8f8391c..130cf9a 100644 --- a/src/ubuntu/install/thunderbird/custom_startup.sh +++ b/src/ubuntu/install/thunderbird/custom_startup.sh @@ -55,7 +55,9 @@ kasm_startup() { fi if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then - + + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/torbrowser/custom_startup.sh b/src/ubuntu/install/torbrowser/custom_startup.sh index 8263e1d..f85654a 100644 --- a/src/ubuntu/install/torbrowser/custom_startup.sh +++ b/src/ubuntu/install/torbrowser/custom_startup.sh @@ -56,7 +56,9 @@ kasm_startup() { fi if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then - + + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -70,6 +72,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/vlc/custom_startup.sh b/src/ubuntu/install/vlc/custom_startup.sh index b7fd5b7..cd64689 100644 --- a/src/ubuntu/install/vlc/custom_startup.sh +++ b/src/ubuntu/install/vlc/custom_startup.sh @@ -55,7 +55,9 @@ kasm_startup() { fi if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then - + + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/vs_code/custom_startup.sh b/src/ubuntu/install/vs_code/custom_startup.sh index 81ed24c..c46955a 100644 --- a/src/ubuntu/install/vs_code/custom_startup.sh +++ b/src/ubuntu/install/vs_code/custom_startup.sh @@ -56,6 +56,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/zoom/custom_startup.sh b/src/ubuntu/install/zoom/custom_startup.sh index e9f261e..06befae 100644 --- a/src/ubuntu/install/zoom/custom_startup.sh +++ b/src/ubuntu/install/zoom/custom_startup.sh @@ -56,6 +56,8 @@ kasm_startup() { if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -69,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi diff --git a/src/ubuntu/install/zsnes/custom_startup.sh b/src/ubuntu/install/zsnes/custom_startup.sh index e4f2e9a..02b486a 100644 --- a/src/ubuntu/install/zsnes/custom_startup.sh +++ b/src/ubuntu/install/zsnes/custom_startup.sh @@ -55,6 +55,9 @@ kasm_startup() { fi if [ -z "$DISABLE_CUSTOM_STARTUP" ] || [ -n "$FORCE" ] ; then + + echo "Entering process startup loop" + set +x while true do if ! pgrep -x $PGREP > /dev/null @@ -68,6 +71,7 @@ kasm_startup() { fi sleep 1 done + set -x fi