diff --git a/custompkg/root/usr/local/bin/new-user-setup b/custompkg/root/usr/local/bin/new-user-setup index 7b0cd04..3db230f 100644 --- a/custompkg/root/usr/local/bin/new-user-setup +++ b/custompkg/root/usr/local/bin/new-user-setup @@ -5,6 +5,8 @@ rsync --no-owner -avP /etc/skel/ $HOME/ # run modular setup scripts for FN in $HOME/Library/user-setup/*.sh ; do + echo "new-user-setup: starting $(basename $FN)..." bash "$FN" 2>&1 | tee -a $HOME/Library/Logs/user-setup.log rm "$FN" + echo "new-user-setup: removed $(basename $FN)..." done