/[vz-tools]/trunk/vz-create.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/vz-create.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 8 by dpavlin, Sun Jan 7 13:35:10 2007 UTC revision 63 by dpavlin, Fri Feb 27 18:38:19 2009 UTC
# Line 3  Line 3 
3  # Dobrica Pavlinusic <dpavlin@rot13.org> 2007-01-07  # Dobrica Pavlinusic <dpavlin@rot13.org> 2007-01-07
4  #  #
5  use strict;  use strict;
6  use Shell qw/host mkdir vzsplit rm/;  use Shell qw/mkdir vzsplit rm/;
7  use IO::Prompt;  use IO::Prompt;
8  use Regexp::Common qw/net/;  use Regexp::Common qw/net/;
9    use lib 'lib';
10    use VZ;
11    use Getopt::Long;
12    
13  # default debian distribution  # default debian distribution
14  my $dist = 'etch';  my $dist = 'etch';
15  # debian mirror to use  # debian mirror to use
16  my $debian_mirror_uri = 'http://debian.carnet.hr/debian';  my $debian_mirror_uri = 'http://www.debian.org/debian';
17    my $arh = 'i386';
18  # split physicial machine in how meny virtual ones?  # split physicial machine in how meny virtual ones?
19  my $ve_total = 2;  my $split = 4;
20  # swap size (Mb)  # swap size (Mb)
21  my $swap_size = 512;  my $swap_size = 512;
22    # diskspace
23    my $diskspace = '2G:4G';
24    
25    GetOptions(
26            'dist=s'        => \$dist,
27            'arh=s'         => \$arh,
28            'mirror=s'      => \$debian_mirror_uri,
29            'split=i'       => \$split,
30    );
31    
32    check_root;
33    
34    my $config_file = $0;
35    $config_file =~ s!-create.pl!-tools.conf!;
36    warn "## $config_file\n";
37    if (-e $config_file) {
38            open(my $fh, '<', $config_file) || die "can't open $config_file: $!";
39            eval join("\n", <$fh>);
40            close($fh);
41            die "Error in $config_file: $@" if ($@);
42    }
43    
44  print "Creating new OpenVZ instance...\n";  print "Creating new OpenVZ instance...\n";
45    
46  my $arg = shift @ARGV;  my ($hostname, $ip) = ('localhost','');
47    
48  my ($hostname, $ip);  foreach my $arg ( @ARGV ) {
49    
50            if ($arg =~ m/$RE{net}{IPv4}/) {
51                    $ip = $arg;
52                    if ( my $h = ip2hostname($ip) ) {
53                            $hostname = $h;
54                    }
55            } elsif ($arg) {
56                    if ( my $addr = hostname2ip($arg) ) {
57                            ( $hostname, $ip ) = ( $arg, $addr );
58                    } else {
59                            $hostname = $arg;
60                    }
61            }
62    
 if ($arg =~ m/$RE{net}{IPv4}/) {  
         $ip = $arg;  
         chomp($hostname);  
         $hostname = host($arg);  
         $hostname =~ s/^.*\s(\S+)$/$1/;  
 } else {  
         $hostname = $arg;  
         $ip = host($arg);  
         chomp($ip);  
         $ip =~ s/^.*\s(\S+)$/$1/;  
63  }  }
64    
65    # nuke arguments so that prompt doesn't get confused
66    @ARGV = ();
67    
68  $ip ||= prompt('Enter IP: ', -require => {  $ip ||= prompt('Enter IP: ', -require => {
69          'Must be IP (e.g. 192.168.0.1): ' => qr/$RE{net}{IPv4}/,          'Must be IP (e.g. 192.168.0.1): ' => qr/$RE{net}{IPv4}/,
70  }) unless ($ip =~ /$RE{net}{IPv4}/);  }) unless ($ip =~ /$RE{net}{IPv4}/);
# Line 42  $hostname ||= prompt('Enter hostname: ') Line 73  $hostname ||= prompt('Enter hostname: ')
73    
74  my @ip_split = split(/\./,$ip);  my @ip_split = split(/\./,$ip);
75    
76  my $ve_id = sprintf('%03d%03d', $ip_split[2], $ip_split[3]);  my $ve_id = sprintf('%d%03d', $ip_split[2], $ip_split[3]);
   
 my $vz_root = '/vz';  
77    
78  die "need to know vz_root, and $vz_root doesn't exist: $!\n" unless (-e $vz_root);  if ( $ve_id < 101 ) {
79            $ve_id += 100;
80            warn "# VEID moved to $ve_id because 0 .. 100 are reserved\n";
81    }
82    
83  print "VEID: $ve_id hostname: $hostname ip: $ip\n";  print "VEID: $ve_id hostname: $hostname ip: $ip\n";
84    
# Line 54  warn ">> creating directories\n"; Line 86  warn ">> creating directories\n";
86    
87  mkdir('-p', "$vz_root/root/$ve_id", "$vz_root/private/$ve_id");  mkdir('-p', "$vz_root/root/$ve_id", "$vz_root/private/$ve_id");
88    
89  warn ">> installing debian\n";  warn ">> installing debian $dist $arh from $debian_mirror_uri\n";
90    
91  if (! -e "$vz_root/private/$ve_id/etc/debian_version") {  if (! -e "$vz_root/private/$ve_id/etc/debian_version") {
92    
93          my $debootstrap = "debootstrap --arch i386 $dist $vz_root/private/$ve_id $debian_mirror_uri";          my $debootstrap = "debootstrap --arch $arh $dist $vz_root/private/$ve_id $debian_mirror_uri";
94          warn "# $debootstrap\n";          warn "# $debootstrap\n";
95          system($debootstrap);          system($debootstrap);
96    
# Line 66  if (! -e "$vz_root/private/$ve_id/etc/de Line 98  if (! -e "$vz_root/private/$ve_id/etc/de
98          warn "Debian allready installed in $vz_root/private/$ve_id\n";          warn "Debian allready installed in $vz_root/private/$ve_id\n";
99  }  }
100    
101  sub vzctl {  my $conf_path = "$vz_conf/${ve_id}.conf";
         my @args = @_;  
         warn "## vzctl ", join(" ",@args), "\n";  
         system "vzctl", @args;  
 }  
   
 my $conf_path = "/etc/vz/conf/${ve_id}.conf";  
102  warn ">> creating configuration file $conf_path\n";  warn ">> creating configuration file $conf_path\n";
103    
104  if (-e $conf_path) {  if (-e $conf_path) {
105          warn "$conf_path allready exists, not touching it\n";          warn "$conf_path allready exists, not touching it\n";
106  } else {  } else {
107          vzsplit('-n', $ve_total, '-s', $swap_size * 1024, '>', $conf_path);          vzsplit('-n', $split, '-s', $swap_size * 1024, '>', $conf_path);
108    
109            die "configuration file not created" unless -e $conf_path;
110    
111          open(my $tmp, '>>', $conf_path) || die "can't open $conf_path: $!";          open(my $tmp, '>>', $conf_path) || die "can't open $conf_path: $!";
112          print $tmp "OSTEMPLATE=debian-3.1\n";          print $tmp "OSTEMPLATE=debian-3.1\n";
113          close($tmp);          close($tmp);
114    
115          vzctl('set', $ve_id, '--applyconfig', 'vps.basic', '--save');  #       vzctl('set', $ve_id, '--applyconfig', 'vps.basic', '--save');
116          vzctl('set', $ve_id, '--ipadd', $ip, '--save');          vzctl('set', $ve_id, '--ipadd', $ip, '--save');
117          vzctl('set', $ve_id, '--hostname', $hostname, '--save');          vzctl('set', $ve_id, '--hostname', $hostname, '--save');
118            vzctl('set', $ve_id, '--diskspace', $diskspace, '--save');
119  }  }
120    
121  sub create_file {  sub create_file {
# Line 104  create_file( Line 133  create_file(
133          "deb $debian_mirror_uri $dist main contrib non-free\n"          "deb $debian_mirror_uri $dist main contrib non-free\n"
134  );  );
135    
136  vzctl('start', $ve_id, '--wait');  vzctl('start', $ve_id);
   
 my $customize_sh = <<'__END_OF_SH__';  
137    
138  # use shadow passwords  runscript( $ve_id, 'custom/00-all.sh' );
 pwconv  
139    
140  # upgrade to lastest version  #vzctl('stop', $ve_id);
 apt-get update  
 apt-get upgrade  
   
 # install additional packages  
 apt-get -y install vim less ssh sudo screen  
   
 # remove unwanted packages  
 apt-get -y remove nano  
   
 # apt-iselect helper  
 wget -O /usr/local/bin/apt-iselect http://www.rot13.org/~dpavlin/projects/scripts/apt-iselect && chmod 755 /usr/local/bin/apt-iselect  
   
 # lock root user  
 usermod -L root  
   
 # disable getty  
 sed -i -e '/getty/d' /etc/inittab  
   
 # sane permissions for /root directory  
 chmod 700 /root  
   
 # disable sync() for syslog  
 sed -i -e 's@\([[:space:]]\)\(/var/log/\)@\1-\2@' /etc/syslog.conf  
   
 # fix /etc/mtab  
 rm -f /etc/mtab  
 ln -s /proc/mounts /etc/mtab  
   
 # remove unneeded packages  
 dpkg --purge modutils  
 dpkg --purge ppp pppoeconf pppoe pppconfig  
   
 # disable services  
 update-rc.d -f klogd remove  
 update-rc.d -f quotarpc remove  
 update-rc.d -f exim4 remove  
 update-rc.d -f inetd remove  
   
 # clean packages  
 apt-get clean  
141    
142  __END_OF_SH__  my $passwd = prompt( -prompt => 'root passwd: ', -echo=>'*' );
143    vzctl('set', $ve_id, '--userpasswd', 'root:' . $passwd ) if $passwd;
144    
145  foreach my $l (split(/\n/, $customize_sh)) {  my $login = prompt('create login: ');
146          next if ($l =~ /^\s*$/);  if ($login) {
147          if ($l =~ /^#\s+(.+)$/) {          $passwd = prompt( -prompt => "$login passwd: ", -echo=>'*');
148                  warn ">> $1\n";          vzctl('exec', $ve_id, "useradd --create-home $login");
149          } else {          vzctl('set', $ve_id, '--userpasswd', "$login:$passwd" );
                 vzctl('exec', $ve_id, $l);  
         }  
150  }  }
151    
152  #vzctl('stop', $ve_id);  #runscript( $ve_id, 'custom/50-hypertable.sh' );
153    print "OK: $ve_id created\n";

Legend:
Removed from v.8  
changed lines
  Added in v.63

  ViewVC Help
Powered by ViewVC 1.1.26