fixed some recursion
authorFred Hamster <fred@gruntose.com>
Mon, 16 Dec 2024 21:12:31 +0000 (16:12 -0500)
committerFred Hamster <fred@gruntose.com>
Mon, 16 Dec 2024 21:12:31 +0000 (16:12 -0500)
scripts/core/launch_feisty_meow.sh

index c1791c598c5b06ff59469da27c55fad6f5b1acaa..4593266ab8eba310d57ade765c0ae7abdc6dbe55 100644 (file)
@@ -122,7 +122,11 @@ if [ "$NO_REPAIRS_NEEDED" == "true" ]; then
   #####
 
   # patch the user variable if we were launched by one of our cron jobs.
-  USER="$(sanitized_username)"
+  # first we set USER to not use the full email style version, if that's what already exists.
+  if [ ! -z "$USER" -a ! -z "$(echo "${USER/.*@.*/yeps}")" ]; then
+    USER="$(sanitized_username)"
+  fi
+  # then we check if the USER variable isn't set, and use CRONUSER from the cron templates, if defined.
   if [ -z "$USER" -a ! -z "$CRONUSER" ]; then
     export USER="$CRONUSER"
   fi