diff options
author | startxfr <clarue@startx.fr> | 2014-12-05 21:42:47 +0100 |
---|---|---|
committer | startxfr <clarue@startx.fr> | 2014-12-05 21:42:47 +0100 |
commit | 0c46aa05e68dda40eb7f5b6f25b32a0fe32841a9 (patch) | |
tree | 250d1bd97a8efa94edd538d22e1fbfd4de78cf3b /Services/ssh/sx/sshd.sh | |
parent | ae9ea8fd52ae35751af246122935455124891db7 (diff) | |
download | phpmyadmin-0c46aa05e68dda40eb7f5b6f25b32a0fe32841a9.tar.gz phpmyadmin-0c46aa05e68dda40eb7f5b6f25b32a0fe32841a9.tar.bz2 phpmyadmin-0c46aa05e68dda40eb7f5b6f25b32a0fe32841a9.tar.xz phpmyadmin-0c46aa05e68dda40eb7f5b6f25b32a0fe32841a9.zip |
modification de la gestion du serveur ssh
Diffstat (limited to 'Services/ssh/sx/sshd.sh')
-rw-r--r-- | Services/ssh/sx/sshd.sh | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/Services/ssh/sx/sshd.sh b/Services/ssh/sx/sshd.sh new file mode 100644 index 0000000..795fff5 --- /dev/null +++ b/Services/ssh/sx/sshd.sh @@ -0,0 +1,63 @@ +#!/bin/bash + +export TERM=dumb +export logfile="/var/log/sshd.log" + +# Begin configuration before starting daemonized process +# and start generating host keys +function begin_config { + echo "=> Begin sshd configuration for host $HOSTNAME" + mkdir -p /var/run/sshd +} + +# End configuration process just before starting daemon +function end_config { + echo "=> End sshd configuration ..." +} + +# Perform installation of ssh keys +function install_host_keys { + local mail=$1; + if [ ! -f /etc/ssh/ssh_host_rsa_key ]; then + echo "===> Installing sshd host keys for $mail ..." + generate_host_key rsa $mail /etc/ssh/ssh_host_rsa_key + generate_host_key ecdsa $mail /etc/ssh/ssh_host_ecdsa_key + else + echo "===> sshd host key found at /etc/ssh/ssh_host_rsa_key ..." + fi; +} + + +# generate key and store +function generate_host_key { + local format=$1; local mail=$2; local dest=$3; + echo "===> Generating $format sshd key for $mail recorded in $dest" + ssh-keygen -t $format -C $mail -f $dest -N '' +} + +# Start the sshd server in background. Used to perform config +# against the database structure such as user creation +function start_server { + echo "===> Starting sshd server ..." + /usr/sbin/sshd & + sleep 8 +} + +# Stop the sshd server running in background. +function stop_server { + echo "===> Stopping sshd server ..." + killall sshd + sleep 8 +} + +# Start the sshd server as a deamon and execute it inside +# the running shell +function start_daemon { + echo "=> Starting sshd daemon ..." + exec /usr/sbin/sshd -D +} + + +if [[ "$0" == *"sshd.sh" && ! $1 = "" ]];then + eval "$@"; +fi
\ No newline at end of file |