*) 2004-07-25
 
+- added setup script for openssh
 - some target modifications
 - added FAI docu and script (not working yet, just to have it there!)
 - updated ardour
 
 
 pre_install()  {
        export LD=gcc
-       # add the sshd user
-       echo "adding user sshd ..."
-       [ -z "`cat $root/etc/passwd | grep sshd`" ] && useradd sshd
-       echo "done."
+       useradd -u 1025 -c 'sshd server' sshd || true
                }
 
 confopt="$confopt --with-md5-passwords --without-pam --with-tcp-wrappers \
 
--- /dev/null
+setup_block()  {
+       useradd -u 1025 -c 'sshd server' sshd || true
+               }
+
+uninstall_block()      {
+       userdel sshd || true
+                       }