chiark / gitweb /
actually check in the script
[chiark-utils.git] / sync-accounts / sync-accounts-createuser
index 4959dbe860678fb1889982e0faf344a26cada157..219151e2d5a6798760e49ec6804a11ed277d1dab 100755 (executable)
@@ -1,10 +1,28 @@
 #!/bin/sh
-# default user-creation script for sync-accounts
+# $Id: sync-accounts-createuser,v 1.4 2002-07-14 19:35:55 ianmdlvl Exp $
+#
+# Copyright 1999-2002 Ian Jackson <ian@davenant.greenend.org.uk>
+#
+#  This is free software; you can redistribute it and/or modify it under
+#  the terms of the GNU General Public License as published by the Free
+#  Software Foundation; either version 2, or (at your option) any later
+#  version.
+#
+#  This is distributed in the hope that it will be useful, but WITHOUT
+#  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+#  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+#  for more details.
+#
+#  You should already have a copy of the GNU General Public License.
+#  If not, write to the Free Software Foundation, Inc., 59 Temple
+#  Place - Suite 330, Boston, MA 02111-1307, USA.
 
 set -e
-mkdir -p $SYNCUSER_CREATE_HOME
-cp -a /etc/skel/. $SYNCUSER_CREATE_HOME
-chown -R $SYNCUSER_CREATE_UID.$SYNCUSER_CREATE_GID $SYNCUSER_CREATE_HOME
-chmod 2755 $SYNCUSER_CREATE_HOME
-rm -f /home/$SYNCUSER_CREATE_USER
-ln -s ..$SYNCUSER_CREATE_HOME /home/$SYNCUSER_CREATE_USER
+un=$SYNCUSER_CREATE_USER
+ui=$SYNCUSER_CREATE_UID
+gi=$SYNCUSER_CREATE_GID
+ho=$SYNCUSER_CREATE_HOME
+test -d $ho || mkdir $ho
+chgrp $gi $ho
+chown $ui $ho
+chmod 2755 $ho