Created
January 18, 2013 18:29
-
-
Save rtrouton/4566986 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/tcsh -f | |
## | |
############################ login.sh ########################### | |
# Mike Bombich | [email protected] | |
# Copyright 2002 Mike Bombich. | |
# With the appropriate modification to /etc/ttys, this script will | |
# execute each time a user logs in. | |
################################################################## | |
# This script takes the username as an argument, then removes any | |
# old default home directory, restores a fresh copy of the default | |
# home directory, then chowns it to logging in user. | |
## | |
## Properties | |
set defGrp = staff | |
# This part is for debugging/testing purposes only | |
if ( $#argv < 1 ) then | |
echo "No user specified!" | |
exit 1 | |
endif | |
# If this is the default user, replace the default home directory | |
# with a copy of the user template | |
if ( $1 == "visitor" ) then | |
rm -rf /Users/$1 | |
/usr/bin/ditto -rsrcFork "/System/Library/User Template/English.lproj" /Users/$1 | |
/usr/sbin/chown -R ${1}:${defGrp} /Users/$1 | |
endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment