db4702398b5c8c3bb1e32b61521e570baa83a146
[myplc.git] / plc.d / ssh
1 #!/bin/bash
2 # $Id$
3 # $URL$
4 #
5 # priority: 600
6 #
7 # Generate SSH keys
8 #
9 # Mark Huang <mlhuang@cs.princeton.edu>
10 # Copyright (C) 2006 The Trustees of Princeton University
11 #
12 # $Id$
13 #
14
15 # Source function library and configuration
16 . /etc/plc.d/functions
17 . /etc/planetlab/plc_config
18
19 # Be verbose
20 set -x
21
22 # XXX Could make these configurable
23 KEY_TYPE_DEBUG=rsa
24 KEY_LEN_DEBUG=2048      
25
26 case "$1" in
27     start)
28         MESSAGE=$"Generating SSH keys"
29         dialog "$MESSAGE"
30
31         tmp=$(mktemp -d /tmp/ssh.XXXXXX)
32
33         # Generate debug SSH key
34         if [ ! -f $PLC_DEBUG_SSH_KEY_PUB -o ! -f $PLC_DEBUG_SSH_KEY ] ; then
35             ssh-keygen -N "" -C "$PLC_NAME Central <$PLC_MAIL_SUPPORT_ADDRESS>" \
36                 -b $KEY_LEN_DEBUG -t $KEY_TYPE_DEBUG -f $tmp/debug
37             check
38             install -D -m 600 $tmp/debug $PLC_DEBUG_SSH_KEY
39             install -D -m 644 $tmp/debug.pub $PLC_DEBUG_SSH_KEY_PUB
40         fi
41
42         rm -rf $tmp
43
44         result "$MESSAGE"
45         ;;
46 esac
47
48 exit $ERRORS