remove useless import
[bootmanager.git] / source / steps / InstallWriteConfig.py
1 #!/usr/bin/python
2 #
3 # Copyright (c) 2003 Intel Corporation
4 # All rights reserved.
5 #
6 # Copyright (c) 2004-2006 The Trustees of Princeton University
7 # All rights reserved.
8 # expected /proc/partitions format
9
10 import os, string
11
12 from Exceptions import *
13 import utils
14 import BootAPI
15 import ModelOptions
16
17 def Run( vars, log ):
18
19     """
20     Writes out the following configuration files for the node:
21     /etc/fstab
22     /etc/resolv.conf (if applicable)
23     /etc/ssh/ssh_host_key
24     /etc/ssh/ssh_host_rsa_key
25     /etc/ssh/ssh_host_dsa_key
26     
27     Expect the following variables from the store:
28     VERSION                 the version of the install
29     SYSIMG_PATH             the path where the system image will be mounted
30                             (always starts with TEMP_PATH)
31     PARTITIONS              dictionary of generic part. types (root/swap)
32                             and their associated devices.
33     PLCONF_DIR              The directory to store the configuration file in
34     INTERFACE_SETTINGS  A dictionary of the values from the network
35                                 configuration file
36     Sets the following variables:
37     None
38     
39     """
40
41     log.write( "\n\nStep: Install: Writing configuration files.\n" )
42     
43     # make sure we have the variables we need
44     try:
45         VERSION= vars["VERSION"]
46         if VERSION == "":
47             raise ValueError, "VERSION"
48
49         SYSIMG_PATH= vars["SYSIMG_PATH"]
50         if SYSIMG_PATH == "":
51             raise ValueError, "SYSIMG_PATH"
52
53         PARTITIONS= vars["PARTITIONS"]
54         if PARTITIONS == None:
55             raise ValueError, "PARTITIONS"
56
57         PLCONF_DIR= vars["PLCONF_DIR"]
58         if PLCONF_DIR == "":
59             raise ValueError, "PLCONF_DIR"
60
61         INTERFACE_SETTINGS= vars["INTERFACE_SETTINGS"]
62         if INTERFACE_SETTINGS == "":
63             raise ValueError, "INTERFACE_SETTINGS"
64
65     except KeyError, var:
66         raise BootManagerException, "Missing variable in vars: %s\n" % var
67     except ValueError, var:
68         raise BootManagerException, "Variable in vars, shouldn't be: %s\n" % var
69
70     log.write( "Setting local time to UTC\n" )
71     utils.sysexec_chroot( SYSIMG_PATH,
72         "ln -sf /usr/share/zoneinfo/UTC /etc/localtime", log )
73
74     #log.write( "Enabling ntp at boot\n" )
75     #utils.sysexec_chroot( SYSIMG_PATH, "chkconfig ntpd on", log )
76
77     log.write( "Creating system directory %s\n" % PLCONF_DIR )
78     if not utils.makedirs( "%s/%s" % (SYSIMG_PATH,PLCONF_DIR) ):
79         log.write( "Unable to create directory\n" )
80         return 0
81
82     log.write( "Writing system /etc/fstab\n" )
83     fstab= file( "%s/etc/fstab" % SYSIMG_PATH, "w" )
84     fstab.write( "%s           none        swap      sw        0 0\n" % \
85                  PARTITIONS["mapper-swap"] )
86     fstab.write( "%s           /           ext3      defaults  1 1\n" % \
87                  PARTITIONS["mapper-root"] )
88     fstab.write( "%s           /vservers   btrfs     defaults  1 2\n" % \
89                  PARTITIONS["mapper-vservers"] )
90     fstab.write( "none         /proc       proc      defaults  0 0\n" )
91     fstab.write( "none         /dev/shm    tmpfs     defaults  0 0\n" )
92     fstab.write( "none         /dev/pts    devpts    defaults  0 0\n" )
93     fstab.close()
94
95     log.write( "Writing system /etc/issue\n" )
96     issue= file( "%s/etc/issue" % SYSIMG_PATH, "w" )
97     issue.write( "PlanetLab Node: \\n\n" )
98     issue.write( "Kernel \\r on an \\m\n" )
99     issue.write( "http://www.planet-lab.org\n\n" )
100     issue.close()
101
102     log.write( "Setting up authentication (non-ssh)\n" )
103     utils.sysexec_chroot( SYSIMG_PATH, "authconfig --nostart --kickstart --enablemd5 " \
104                    "--enableshadow", log )
105     utils.sysexec( "sed -e 's/^root\:\:/root\:*\:/g' " \
106                    "%s/etc/shadow > %s/etc/shadow.new" % \
107                    (SYSIMG_PATH,SYSIMG_PATH), log )
108     utils.sysexec_chroot( SYSIMG_PATH, "mv " \
109                    "/etc/shadow.new /etc/shadow", log )
110     utils.sysexec_chroot( SYSIMG_PATH, "chmod 400 /etc/shadow", log )
111
112     # if we are setup with dhcp, copy the current /etc/resolv.conf into
113     # the system image so we can run programs inside that need network access
114     method= ""
115     try:
116         method= vars['INTERFACE_SETTINGS']['method']
117     except:
118         pass
119     
120     if method == "dhcp":
121         utils.sysexec( "cp /etc/resolv.conf %s/etc/" % SYSIMG_PATH, log )
122
123     log.write( "Writing node install version\n" )
124     utils.makedirs( "%s/etc/planetlab" % SYSIMG_PATH )
125     ver= file( "%s/etc/planetlab/install_version" % SYSIMG_PATH, "w" )
126     ver.write( "%s\n" % VERSION )
127     ver.close()
128
129     log.write( "Creating ssh host keys\n" )
130     key_gen_prog= "/usr/bin/ssh-keygen"
131
132     log.write( "Generating SSH1 RSA host key:\n" )
133     key_file= "/etc/ssh/ssh_host_key"
134     utils.sysexec_chroot( SYSIMG_PATH, "%s -q -t rsa1 -f %s -C '' -N ''" %
135                    (key_gen_prog,key_file), log )
136     utils.sysexec( "chmod 600 %s/%s" % (SYSIMG_PATH,key_file), log )
137     utils.sysexec( "chmod 644 %s/%s.pub" % (SYSIMG_PATH,key_file), log )
138     
139     log.write( "Generating SSH2 RSA host key:\n" )
140     key_file= "/etc/ssh/ssh_host_rsa_key"
141     utils.sysexec_chroot( SYSIMG_PATH, "%s -q -t rsa -f %s -C '' -N ''" %
142                    (key_gen_prog,key_file), log )
143     utils.sysexec( "chmod 600 %s/%s" % (SYSIMG_PATH,key_file), log )
144     utils.sysexec( "chmod 644 %s/%s.pub" % (SYSIMG_PATH,key_file), log )
145     
146     log.write( "Generating SSH2 DSA host key:\n" )
147     key_file= "/etc/ssh/ssh_host_dsa_key"
148     utils.sysexec_chroot( SYSIMG_PATH, "%s -q -t dsa -f %s -C '' -N ''" %
149                    (key_gen_prog,key_file), log )
150     utils.sysexec( "chmod 600 %s/%s" % (SYSIMG_PATH,key_file), log )
151     utils.sysexec( "chmod 644 %s/%s.pub" % (SYSIMG_PATH,key_file), log )
152
153     return 1