/[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

Contents of /trunk/vz-create.pl

Parent Directory Parent Directory | Revision Log Revision Log


Revision 47 - (show annotations)
Sun Mar 30 12:48:39 2008 UTC (16 years ago) by dpavlin
File MIME type: text/plain
File size: 3638 byte(s)
cleanup hard-coded dist and arh
1 #!/usr/bin/perl -w
2 #
3 # Dobrica Pavlinusic <dpavlin@rot13.org> 2007-01-07
4 #
5 use strict;
6 use Shell qw/mkdir vzsplit rm/;
7 use IO::Prompt;
8 use Regexp::Common qw/net/;
9 use lib 'lib';
10 use VZ;
11 use Getopt::Long;
12
13 # default debian distribution
14 my $dist = 'etch';
15 # debian mirror to use
16 my $debian_mirror_uri = 'http://www.debian.org/debian';
17 my $arh = 'i386';
18 # split physicial machine in how meny virtual ones?
19 my $split = 4;
20 # swap size (Mb)
21 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";
45
46 my ($hostname, $ip) = ('localhost','');
47
48 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
63 }
64
65 # nuke arguments so that prompt doesn't get confused
66 @ARGV = ();
67
68 $ip ||= prompt('Enter IP: ', -require => {
69 'Must be IP (e.g. 192.168.0.1): ' => qr/$RE{net}{IPv4}/,
70 }) unless ($ip =~ /$RE{net}{IPv4}/);
71
72 $hostname ||= prompt('Enter hostname: ') unless ($hostname);
73
74 my @ip_split = split(/\./,$ip);
75
76 my $ve_id = sprintf('%d%03d', $ip_split[2], $ip_split[3]);
77
78 print "VEID: $ve_id hostname: $hostname ip: $ip\n";
79
80 warn ">> creating directories\n";
81
82 mkdir('-p', "$vz_root/root/$ve_id", "$vz_root/private/$ve_id");
83
84 warn ">> installing debian $dist $arh from $debian_mirror_uri\n";
85
86 if (! -e "$vz_root/private/$ve_id/etc/debian_version") {
87
88 my $debootstrap = "debootstrap --arch $arh $dist $vz_root/private/$ve_id $debian_mirror_uri";
89 warn "# $debootstrap\n";
90 system($debootstrap);
91
92 } else {
93 warn "Debian allready installed in $vz_root/private/$ve_id\n";
94 }
95
96 my $conf_path = "$vz_conf/${ve_id}.conf";
97 warn ">> creating configuration file $conf_path\n";
98
99 if (-e $conf_path) {
100 warn "$conf_path allready exists, not touching it\n";
101 } else {
102 vzsplit('-n', $split, '-s', $swap_size * 1024, '>', $conf_path);
103
104 die "configuration file not created" unless -e $conf_path;
105
106 open(my $tmp, '>>', $conf_path) || die "can't open $conf_path: $!";
107 print $tmp "OSTEMPLATE=debian-3.1\n";
108 close($tmp);
109
110 # vzctl('set', $ve_id, '--applyconfig', 'vps.basic', '--save');
111 vzctl('set', $ve_id, '--ipadd', $ip, '--save');
112 vzctl('set', $ve_id, '--hostname', $hostname, '--save');
113 vzctl('set', $ve_id, '--diskspace', $diskspace, '--save');
114 }
115
116 sub create_file {
117 my ($path, $code) = @_;
118 if (! -e $path) {
119 warn ">> creating $path\n";
120 open(my $tmp, '>', $path) || die "can't create $path: $!";
121 print $tmp $code->($path);
122 close($tmp);
123 }
124 }
125
126 create_file(
127 "$vz_root/private/$ve_id/etc/apt/sources.list",
128 "deb $debian_mirror_uri $dist main contrib non-free\n"
129 );
130
131 vzctl('start', $ve_id);
132
133 runscript( $ve_id, 'custom/00-all.sh' );
134
135 #vzctl('stop', $ve_id);
136
137 my $passwd = prompt( -prompt => 'root passwd: ', -echo=>'*' );
138 vzctl('set', $ve_id, '--userpasswd', 'root:' . $passwd ) if $passwd;
139
140 my $login = prompt('create login: ');
141 if ($login) {
142 $passwd = prompt( -prompt => "$login passwd: ", -echo=>'*');
143 vzctl('exec', $ve_id, "useradd --create-home $login");
144 vzctl('set', $ve_id, '--userpasswd', "$login:$passwd" );
145 }
146
147 runscript( $ve_id, 'custom/50-hypertable.sh' );
148 print "OK: $ve_id created\n";

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26