--- trunk/vz-clone.pl 2009/02/27 20:49:06 66 +++ trunk/vz-clone.pl 2009/02/28 16:32:12 67 @@ -6,7 +6,7 @@ my $vz = '/vz'; my $conf = '/etc/vz/conf'; -my $snap_size = '1G'; +my $snap_size = '10G'; my ( $action, $VEID ) = @ARGV; @@ -198,5 +198,7 @@ print $n qq{DISK_QUOTA="no"\n} if $use_snapshot; # don't wait for quota rebuild on startup -print "\nPlease review config file: $conf/$CVEID.conf\nAdd NAT for new VE with: iptables -t nat -A POSTROUTING -s $ve_clone_ip -o eth0 -j MASQUERADE\nStart clone of $VEID with: vzctl start $CVEID\n" +my $iptables="iptables -t nat -A POSTROUTING -s $ve_clone_ip -o eth0 -j MASQUERADE"; +system( $iptables ); +print "\nConfig file: $conf/$CVEID.conf\nAdded NAT for new VE with: $iptables\nStart clone of $VEID with: vzctl start $CVEID\n"