/usr/bin/sync-accounts-createuser is in chiark-scripts 5.0.2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #!/bin/sh
# $Id: sync-accounts-createuser,v 1.6 2007-09-21 21:21:15 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 3, 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, consult the Free Software Foundation's website at
# www.fsf.org, or the GNU Project website at www.gnu.org.
set -e
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
|