/[vz-tools]/trunk/lib/VZ.pm
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/lib/VZ.pm

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

revision 40 by dpavlin, Fri Feb 8 23:02:25 2008 UTC revision 59 by dpavlin, Mon Feb 2 15:10:11 2009 UTC
# Line 2  package VZ; Line 2  package VZ;
2  use Exporter 'import';  use Exporter 'import';
3  our @EXPORT = qw(  our @EXPORT = qw(
4  check_root  check_root
5    
6  ip2hostname  ip2hostname
7  hostname2ip  hostname2ip
8  vzlist_configs  
9    conf_veids
10    runscript
11    
12  vzctl  vzctl
13    vzlist
14    
15  $vz_root  $vz_root
16  $vz_conf  $vz_conf
17    
18    dump
19  );  );
20    
21  use warnings;  use warnings;
22  use strict;  use strict;
23    
24  use Socket;  use Socket;
25    use Data::Dump qw/dump/;
26    
27  our $vz_root = '/vz';  our $vz_root = '/vz';
28  our $vz_conf = '/etc/vz/conf';  our $vz_conf = '/etc/vz/conf';
29    
30    $vz_root = '/var/lib/vz' if ! -e $vz_root && -e '/var/lib/vz';
31    
32  =head1 NAME  =head1 NAME
33    
34  VZ - helper functions for VZ tools  VZ - helper functions for VZ tools
# Line 64  sub hostname2ip { Line 74  sub hostname2ip {
74  sub ip2hostname {  sub ip2hostname {
75          my $ip = shift || return;          my $ip = shift || return;
76    
77          return gethostbyaddr(inet_aton($ip), AF_INET)          my $hostname = gethostbyaddr(inet_aton($ip), AF_INET)
78                  or die "Can't look up $ip: $!\n";                  or die "Can't look up $ip: $!\n";
79            return $hostname;
80  }  }
81    
82  =head2 vzlist_configs  =head2 conf_veids
83    
84    my @VEIDs = vzlist_configs;    my @VEIDs = conf_veids;
85    
86  =cut  =cut
87    
88  sub vzlist_configs {  sub conf_veids {
89          my @c;          my @c;
90          open( my $cfgs, 'find /etc/vz/conf -maxdepth 1 -name "*.conf" |' ) || die "can't run find: $!";          open( my $cfgs, 'find /etc/vz/conf -maxdepth 1 -name "*.conf" |' ) || die "can't run find: $!";
91          while(<$cfgs>) {          while(<$cfgs>) {
92                  chomp;                  chomp;
93                  if ( m#^.+/(\d+)\.conf$# ) {                  if ( m{^.+/(\d+)\.conf$} ) {
94                          if ( -d "$vz_root/private/$1" ) {                          if ( -d "$vz_root/private/$1" ) {
95                                  push @c, $1;                                  push @c, $1;
96                          } else {                          } else {
# Line 92  sub vzlist_configs { Line 103  sub vzlist_configs {
103          return @c;          return @c;
104  }  }
105    
106    =head2 runscript
107    
108      runscript( $veid, '/path/to/script' );
109    
110    =cut
111    
112    sub runscript {
113            my ( $veid, $path ) = @_;
114    
115            if ( open(my $fh, $path) ) {
116                    while(<$fh>) {
117                            chomp;
118                            next if (m/^\s*$/);
119                            if (/^#\s+(.+)$/) {
120                                    warn ">> $1\n";
121                            } else {
122                                    vzctl('exec', $veid, $_);
123                            }
124                    }
125            } else {
126                    warn "can't open $path: $!";
127            }
128    }
129                    
130    
131  =head2 vzctl  =head2 vzctl
132    
133    vzctl('set','--something',42);    vzctl('set','--something',42);
# Line 100  sub vzlist_configs { Line 136  sub vzlist_configs {
136    
137  sub vzctl {  sub vzctl {
138          my @args = @_;          my @args = @_;
139          warn "## vzctl ", join(" ",@args), "\n";          my $a = join(' ', @args);
140            # hide passwords from output
141            $a =~ s/(--userpasswd\s+\w+:)\w+/$1********/;
142            warn "## vzctl $a\n";
143          system('vzctl',@args) == 0 or die "vzctl @args failed: $?"          system('vzctl',@args) == 0 or die "vzctl @args failed: $?"
144  }  }
145    
146    =head2 vzlist
147    
148      my $output = vzlist();
149      my $hash = vzlist( hash => 1 );
150    
151    =cut
152    
153    my @vzlist_fields;
154    
155    sub vzlist {
156            die "need hash as argument" unless $#_ % 2 == 1;
157            my $args = {@_};
158    
159    
160            my $output;
161            $output = {} if defined $args->{hash};
162    
163            if ( ! @vzlist_fields ) {
164                    open(my $vzlist, 'vzlist -L |') || die "can't start vzlist -L: $!";
165                    while(<$vzlist>) {
166                            push @vzlist_fields, (split(/\s+/, $_, 2 ))[0];
167                    }
168            }
169    
170            open(my $vzlist, 'vzlist -a -H -o ' . join(',', @vzlist_fields) . ' |') || die "can't start vzlist: $!";
171            while(<$vzlist>) {
172                    s/^\s+//;
173                    my @data = split(/\s+/, $_);
174                    
175                    if ( defined $args->{hash} ) {
176                            my $hash;
177                            $hash->{ $vzlist_fields[$_] } = $data[$_] foreach 1 .. $#data;
178                            $output->{ $data[0] } = $hash;
179                    } else {
180                            $output .= $_;
181                    }
182            }
183    
184            return $output;
185    }
186    
187  1;  1;

Legend:
Removed from v.40  
changed lines
  Added in v.59

  ViewVC Help
Powered by ViewVC 1.1.26