Changeset 4991 in /cluster/svnroot for bccd-ng/branches/skylar/bccd-3.4.0/trees/bin/bccd-nat
- Timestamp:
- Feb 21, 2015 8:23:05 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
bccd-ng/branches/skylar/bccd-3.4.0/trees/bin/bccd-nat
r4714 r4991 30 30 my($rc,$out); 31 31 32 ($rc,$out) = $Bccd->exec_system([ 33 '/usr/sbin/invoke-rc.d', 34 'isc-dhcp-server', 35 'status', 36 ]); 37 38 if($rc == 0) { 39 $Bccd->log_and_cont('INFO','main','dhcpd is running initially'); 40 } 41 else { 42 $Bccd->log_and_cont('WARN','main','dhcpd is not running initially'); 43 } 44 45 sleep 15; 46 32 47 $rc = $Bccd->config_nat(); 33 48 if(defined($rc)) { 49 50 ($rc,$out) = $Bccd->exec_system([ 51 '/usr/sbin/invoke-rc.d', 52 'isc-dhcp-server', 53 'status', 54 ]); 55 56 if($rc == 0) { 57 $Bccd->log_and_cont('INFO','main','dhcpd is running after config_nat'); 58 } 59 else { 60 $Bccd->log_and_cont('WARN','main','dhcpd is not running after config_nat'); 61 } 62 sleep 15; 34 63 ($rc,$out) = $Bccd->exec_system([ 35 64 '/usr/sbin/invoke-rc.d', … … 43 72 $Bccd->log_and_cont("INFO",$0,"$out, RC $rc\n"); 44 73 } 74 75 ($rc,$out) = $Bccd->exec_system([ 76 '/usr/sbin/invoke-rc.d', 77 'isc-dhcp-server', 78 'status', 79 ]); 80 81 if($rc == 0) { 82 $Bccd->log_and_cont('INFO','main','dhcpd is running after networking'); 83 } 84 else { 85 $Bccd->log_and_cont('WARN','main','dhcpd is not running after networking'); 86 } 87 sleep 15; 45 88 } 46 89 else {
Note: See TracChangeset
for help on using the changeset viewer.