#!/bin/sh ############################################################################## # $Id: install_ssh_init_script,v 1.1 2002/03/21 19:07:52 root Exp $ ############################################################################## # Copy SSH init script ############################################################################## # $Log: install_ssh_init_script,v $ # Revision 1.1 2002/03/21 19:07:52 root # Initial revision # ############################################################################## echo echo "Start of $0" echo ' $Id: install_ssh_init_script,v 1.1 2002/03/21 19:07:52 root Exp $' BASE=/a echo " Copying SSH init script" cp $SI_CONFIG_DIR/finish/files/sshd.init $BASE/etc/init.d/sshd chmod 744 $BASE/etc/init.d/sshd ln -s ../init.d/sshd $BASE/etc/rc3.d/S80sshd ln -s ../init.d/sshd $BASE/etc/rc3.d/K20sshd echo "End of $0"