Author: arkurth
Date: Thu May  4 23:22:17 2017
New Revision: 1793929

URL: http://svn.apache.org/viewvc?rev=1793929&view=rev
Log:
VCL-887
Horizontal separator comments were of varying lengths between 77 and 80 
characters. Made them all 80 characters.

Modified:
    vcl/trunk/managementnode/lib/VCL/Module.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Linux.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/ESXi.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/ManagementNode.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/Ubuntu.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/UnixLab.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/firewall.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/firewall/firewalld.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/firewall/iptables.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/firewall/ufw.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/init.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/init/SysV.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/init/Upstart.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/init/systemd.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/OSX.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Windows.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_10/10.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_10/2016.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_5.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_5/2003.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_5/XP.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_6.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_6/2008.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_6/2012.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_6/7.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_6/8.pm
    vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_6/Vista.pm
    vcl/trunk/managementnode/lib/VCL/Module/Predictive.pm
    vcl/trunk/managementnode/lib/VCL/Module/Predictive/Level_0.pm
    vcl/trunk/managementnode/lib/VCL/Module/Predictive/Level_1.pm
    vcl/trunk/managementnode/lib/VCL/Module/Predictive/Level_2.pm
    vcl/trunk/managementnode/lib/VCL/Module/Provisioning.pm
    vcl/trunk/managementnode/lib/VCL/Module/Provisioning/Lab.pm
    vcl/trunk/managementnode/lib/VCL/Module/Provisioning/VMware/VIM_SSH.pm
    vcl/trunk/managementnode/lib/VCL/Module/Provisioning/VMware/VMware.pm
    vcl/trunk/managementnode/lib/VCL/Module/Provisioning/VMware/vSphere_SDK.pm
    vcl/trunk/managementnode/lib/VCL/Module/Provisioning/VMware/vmware_cmd.pm
    vcl/trunk/managementnode/lib/VCL/Module/Provisioning/libvirt.pm
    vcl/trunk/managementnode/lib/VCL/Module/Provisioning/libvirt/KVM.pm
    vcl/trunk/managementnode/lib/VCL/Module/Provisioning/one.pm
    vcl/trunk/managementnode/lib/VCL/Module/Provisioning/openstack.pm
    vcl/trunk/managementnode/lib/VCL/Module/Provisioning/vbox.pm
    vcl/trunk/managementnode/lib/VCL/Module/Provisioning/xCAT.pm
    vcl/trunk/managementnode/lib/VCL/Module/Semaphore.pm
    vcl/trunk/managementnode/lib/VCL/Module/State.pm
    vcl/trunk/managementnode/lib/VCL/blockrequest.pm
    vcl/trunk/managementnode/lib/VCL/healthcheck.pm
    vcl/trunk/managementnode/lib/VCL/image.pm
    vcl/trunk/managementnode/lib/VCL/inuse.pm
    vcl/trunk/managementnode/lib/VCL/makeproduction.pm
    vcl/trunk/managementnode/lib/VCL/new.pm
    vcl/trunk/managementnode/lib/VCL/reclaim.pm
    vcl/trunk/managementnode/lib/VCL/reserved.pm
    vcl/trunk/managementnode/lib/VCL/utils.pm

Modified: vcl/trunk/managementnode/lib/VCL/Module.pm
URL: 
http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/Module.pm?rev=1793929&r1=1793928&r2=1793929&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/Module.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/Module.pm Thu May  4 23:22:17 2017
@@ -63,7 +63,7 @@ module object)
 
 =cut
 
-##############################################################################
+###############################################################################
 package VCL::Module;
 
 # Specify the lib path using FindBin
@@ -91,13 +91,13 @@ use Digest::SHA1 qw(sha1_hex);
 use VCL::utils;
 use VCL::DataStructure;
 
-##############################################################################
+###############################################################################
 
 =head1 CONSTRUCTOR
 
 =cut
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 new
 
@@ -239,13 +239,13 @@ sub new {
        return $self;
 } ## end sub new
 
-##############################################################################
+###############################################################################
 
 =head1 OBJECT METHODS
 
 =cut
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 create_datastructure_object
 
@@ -294,7 +294,7 @@ sub create_datastructure_object {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 create_object
 
@@ -391,7 +391,7 @@ sub create_object {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 create_os_object
 
@@ -468,7 +468,7 @@ sub create_os_object {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 create_current_os_object
 
@@ -496,7 +496,7 @@ sub create_current_os_object {
        return $self->create_os_object($os_perl_package);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 create_mn_os_object
 
@@ -553,7 +553,7 @@ sub create_mn_os_object {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 create_vmhost_os_object
 
@@ -694,7 +694,7 @@ sub create_vmhost_os_object {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 create_nathost_os_object
 
@@ -771,7 +771,7 @@ my $self = shift;
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 create_provisioning_object
 
@@ -838,7 +838,7 @@ sub create_provisioning_object {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 data
 
@@ -873,7 +873,7 @@ sub data {
        }
 } ## end sub data
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 provisioner
 
@@ -907,7 +907,7 @@ sub provisioner {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 os
 
@@ -940,7 +940,7 @@ sub os {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 mn_os
 
@@ -973,7 +973,7 @@ sub mn_os {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 vmhost_os
 
@@ -1006,7 +1006,7 @@ sub vmhost_os {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 nathost_os
 
@@ -1039,7 +1039,7 @@ sub nathost_os {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_data
 
@@ -1069,7 +1069,7 @@ sub set_data {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_os
 
@@ -1099,7 +1099,7 @@ sub set_os {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_mn_os
 
@@ -1134,7 +1134,7 @@ sub set_mn_os {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_vmhost_os
 
@@ -1169,7 +1169,7 @@ sub set_vmhost_os {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_nathost_os
 
@@ -1204,7 +1204,7 @@ sub set_nathost_os {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_provisioner
 
@@ -1234,7 +1234,7 @@ sub set_provisioner {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_package_hierarchy
 
@@ -1348,7 +1348,7 @@ sub get_package_hierarchy {
        return @return_package_names;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_class_variable_hierarchy
 
@@ -1429,7 +1429,7 @@ sub get_class_variable_hierarchy {
        return @values;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 code_loop_timeout
 
@@ -1556,7 +1556,7 @@ sub code_loop_timeout {
        return 0;
 } ## end sub code_loop_timeout
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_semaphore
 
@@ -1631,7 +1631,7 @@ sub get_semaphore {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_admin_message_variable
 
@@ -1678,7 +1678,7 @@ sub set_admin_message_variable {
        return $self->get_admin_message($admin_message_key, 
$substitution_hashref);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_user_message_variable
 
@@ -1739,7 +1739,7 @@ sub set_user_message_variable {
        return $self->_get_message_variable($user_message_key, 
$substitution_hashref);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 _get_message_variable
 
@@ -1977,7 +1977,7 @@ sub _get_message_variable {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_user_message
 
@@ -1999,7 +1999,7 @@ sub get_user_message {
        return $self->_get_message_variable($user_message_key, 
$substitution_hashref);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_user_short_message
 
@@ -2021,7 +2021,7 @@ sub get_user_short_message {
        return $self->_get_message_variable($user_message_key, 
$substitution_hashref, 1);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_admin_message
 
@@ -2043,7 +2043,7 @@ sub get_admin_message {
        return $self->_get_message_variable($admin_message_key, 
$substitution_hashref, 0, 1);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 setup_get_menu
 
@@ -2066,7 +2066,7 @@ sub setup_get_menu {
        };
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 setup_add_local_account
 
@@ -2189,7 +2189,7 @@ EOF
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 setup_add_local_account
 
@@ -2349,7 +2349,7 @@ sub setup_test_rpc_xml {
        return 0;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 setup_set_local_account_password
 
@@ -2413,7 +2413,7 @@ EOF
        
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 DESTROY
 
@@ -2439,7 +2439,7 @@ sub DESTROY {
        $self->SUPER::DESTROY if $self->can("SUPER::DESTROY");
 } ## end sub DESTROY
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 1;
 __END__

Modified: vcl/trunk/managementnode/lib/VCL/Module/OS.pm
URL: 
http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/Module/OS.pm?rev=1793929&r1=1793928&r2=1793929&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/Module/OS.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/Module/OS.pm Thu May  4 23:22:17 2017
@@ -32,7 +32,7 @@ VCL::Module::OS.pm - VCL base operating
 
 =cut
 
-##############################################################################
+###############################################################################
 package VCL::Module::OS;
 
 # Specify the lib path using FindBin
@@ -58,13 +58,13 @@ use List::Util qw(min max);
 
 use VCL::utils;
 
-##############################################################################
+###############################################################################
 
 =head1 OBJECT METHODS
 
 =cut
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 pre_capture
 
@@ -137,7 +137,7 @@ sub pre_capture {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 post_capture
 
@@ -163,7 +163,7 @@ sub post_capture {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 post_load
 
@@ -186,7 +186,7 @@ sub post_load {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 reserve
 
@@ -221,7 +221,7 @@ sub reserve {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 post_reserve
 
@@ -244,7 +244,7 @@ sub post_reserve {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 post_initial_connection
 
@@ -268,7 +268,7 @@ sub post_initial_connection {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 post_reservation
 
@@ -291,7 +291,7 @@ sub post_reservation {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 pre_reload
 
@@ -314,7 +314,7 @@ sub pre_reload {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 add_user_accounts
 
@@ -457,7 +457,7 @@ sub add_user_accounts {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 delete_user_accounts
 
@@ -528,7 +528,7 @@ sub delete_user_accounts {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_source_configuration_directories
 
@@ -596,7 +596,7 @@ sub get_source_configuration_directories
        return @directories;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 create_currentimage_txt
 
@@ -641,7 +641,7 @@ EOF
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_currentimage_txt_contents
 
@@ -698,7 +698,7 @@ sub get_currentimage_txt_contents {
        return %output;
 } ## end sub get_currentimage_txt_contents
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_current_imagerevision_id
 
@@ -718,7 +718,7 @@ sub get_current_imagerevision_id {
        return $self->get_current_image_tag('imagerevision_id');
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 wait_for_reboot
 
@@ -841,7 +841,7 @@ sub wait_for_reboot {
        return 0;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 wait_for_ping
 
@@ -884,7 +884,7 @@ sub wait_for_ping {
        return $self->code_loop_timeout(\&_pingnode, [$computer_node_name], 
$message, $total_wait_seconds, $attempt_delay_seconds);
 } ## end sub wait_for_ping
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 wait_for_no_ping
 
@@ -925,7 +925,7 @@ sub wait_for_no_ping {
        return $self->code_loop_timeout(sub{return !_pingnode(@_)}, 
[$computer_node_name], $message, $total_wait_seconds, $attempt_delay_seconds);
 } ## end sub wait_for_no_ping
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 wait_for_ssh
 
@@ -973,7 +973,7 @@ sub wait_for_ssh {
        return $self->code_loop_timeout($sub_ref, [$self], $message, 
$total_wait_seconds, $attempt_delay_seconds);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 is_ssh_responding
 
@@ -1062,7 +1062,7 @@ sub is_ssh_responding {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 wait_for_response
 
@@ -1124,7 +1124,7 @@ sub wait_for_response {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 wait_for_port_open
 
@@ -1173,7 +1173,7 @@ sub wait_for_port_open {
        return $self->code_loop_timeout($sub_ref, [$connection_target, 
$port_number], $message, $total_wait_seconds, $attempt_delay_seconds);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 wait_for_port_closed
 
@@ -1193,7 +1193,7 @@ sub wait_for_port_closed {
        return wait_for_port_open($self, @_);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 update_ssh_known_hosts
 
@@ -1280,7 +1280,7 @@ sub update_ssh_known_hosts {
 }
 
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 server_request_set_fixed_ip
 
@@ -1366,7 +1366,7 @@ sub server_request_set_fixed_ip {
 }
 
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 confirm_fixed_ip_is_available
 
@@ -1410,7 +1410,7 @@ sub confirm_fixed_ip_is_available {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 update_public_ip_address
 
@@ -1507,7 +1507,7 @@ sub update_public_ip_address {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_current_image_tag
 
@@ -1551,7 +1551,7 @@ sub get_current_image_tag {
        return;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_current_image_tag
 
@@ -1641,7 +1641,7 @@ sub set_current_image_tag {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_post_load_status
 
@@ -1664,7 +1664,7 @@ sub set_post_load_status {
        return $self->set_current_image_tag('vcld_post_load', 'success');
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_post_load_status
 
@@ -1694,7 +1694,7 @@ sub get_post_load_status {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_tainted_status
 
@@ -1740,7 +1740,7 @@ sub set_tainted_status {
        return $self->set_current_image_tag('vcld_tainted', $reason);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_tainted_status
 
@@ -1771,7 +1771,7 @@ sub get_tainted_status {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_private_interface_name
 
@@ -1828,7 +1828,7 @@ sub get_private_interface_name {
        return;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_public_interface_name
 
@@ -1958,7 +1958,7 @@ sub get_public_interface_name {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 _get_public_interface_name_helper
 
@@ -2061,7 +2061,7 @@ sub _get_public_interface_name_helper {
        }
 }
 
-#///////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 wait_for_public_ip_address
 
@@ -2125,7 +2125,7 @@ sub wait_for_public_ip_address {
        );
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_private_network_configuration
 
@@ -2151,7 +2151,7 @@ sub get_private_network_configuration {
        return $self->get_network_configuration()->{$private_interface_name};
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_public_network_configuration
 
@@ -2182,7 +2182,7 @@ sub get_public_network_configuration {
        return $self->get_network_configuration()->{$public_interface_name};
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_mac_address
 
@@ -2226,7 +2226,7 @@ sub get_mac_address {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_private_mac_address
 
@@ -2247,7 +2247,7 @@ sub get_private_mac_address {
 }
 
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_public_mac_address
 
@@ -2267,7 +2267,7 @@ sub get_public_mac_address {
        return $self->get_mac_address('public');
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_ip_address
 
@@ -2338,7 +2338,7 @@ sub get_ip_address {
        return;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_ip_addresses
 
@@ -2376,7 +2376,7 @@ sub get_ip_addresses {
        return @ip_addresses;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_private_ip_address
 
@@ -2399,7 +2399,7 @@ sub get_private_ip_address {
        return $self->get_ip_address('private', $no_cache, $ignore_error);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_public_ip_address
 
@@ -2422,7 +2422,7 @@ sub get_public_ip_address {
        return $self->get_ip_address('public', $no_cache, $ignore_error);
 }
 
-#///////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_subnet_mask
 
@@ -2474,7 +2474,7 @@ sub get_subnet_mask {
        return;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_private_subnet_mask
 
@@ -2494,7 +2494,7 @@ sub get_private_subnet_mask {
        return $self->get_subnet_mask($self->get_private_ip_address());
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_public_subnet_mask
 
@@ -2514,7 +2514,7 @@ sub get_public_subnet_mask {
        return $self->get_subnet_mask($self->get_public_ip_address());
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_default_gateway
 
@@ -2558,7 +2558,7 @@ sub get_default_gateway {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_private_default_gateway
 
@@ -2578,7 +2578,7 @@ sub get_private_default_gateway {
        return $self->get_default_gateway('private');
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_public_default_gateway
 
@@ -2598,7 +2598,7 @@ sub get_public_default_gateway {
        return $self->get_default_gateway('public');
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_dns_servers
 
@@ -2648,7 +2648,7 @@ sub get_dns_servers {
        return @dns_servers;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_private_dns_servers
 
@@ -2669,7 +2669,7 @@ sub get_private_dns_servers {
        return $self->get_dns_servers('private');
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_public_dns_servers
 
@@ -2690,7 +2690,7 @@ sub get_public_dns_servers {
        return $self->get_dns_servers('public');
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 create_text_file
 
@@ -2843,7 +2843,7 @@ sub create_text_file {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 append_text_file
 
@@ -2869,7 +2869,7 @@ sub append_text_file {
        return $self->create_text_file($file_path, $file_contents_string, 1);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_text_file_line_endings
 
@@ -2928,7 +2928,7 @@ sub set_text_file_line_endings {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_file_contents
 
@@ -2983,7 +2983,7 @@ sub get_file_contents {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 remove_lines_from_file
 
@@ -3034,7 +3034,7 @@ sub remove_lines_from_file {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 execute
 
@@ -3172,7 +3172,7 @@ sub execute {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 execute_new
 
@@ -3459,7 +3459,7 @@ sub execute_new {
        return;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_os_type
 
@@ -3509,7 +3509,7 @@ sub get_os_type {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_os_perl_package
 
@@ -3613,7 +3613,7 @@ sub get_os_perl_package {
        return $os_perl_package;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 process_connect_methods
 
@@ -3820,7 +3820,7 @@ sub process_connect_methods {
        return 1;       
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 is_user_connected
 
@@ -3870,7 +3870,7 @@ sub is_user_connected {
        return 0;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 copy_file
 
@@ -3944,7 +3944,7 @@ sub copy_file {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 copy_file_to
 
@@ -3995,7 +3995,7 @@ sub copy_file_to {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 copy_file_from
 
@@ -4045,7 +4045,7 @@ sub copy_file_from {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 find_files
 
@@ -4160,7 +4160,7 @@ sub find_files {
        return;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_file_checksum
 
@@ -4204,7 +4204,7 @@ sub get_file_checksum {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_tools_file_paths
 
@@ -4342,7 +4342,7 @@ sub get_tools_file_paths {
        return @return_files;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 update_fixed_ip_info
 
@@ -4391,7 +4391,7 @@ sub update_fixed_ip_info {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 =head2 get_timings
 
    Parameters  : $self
@@ -4409,7 +4409,7 @@ sub update_fixed_ip_info {
 
 =cut
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 sub get_timings {
        my $self = shift;
@@ -4451,7 +4451,7 @@ sub get_timings {
        return $db_timing_variable_value;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 run_stage_scripts
 
@@ -4484,7 +4484,7 @@ sub run_stage_scripts {
        return $computer_result && $management_node_result;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 run_stage_scripts_on_computer
 
@@ -4604,7 +4604,7 @@ sub run_stage_scripts_on_computer {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_connect_method_remote_ip_addresses
 
@@ -4728,7 +4728,7 @@ sub get_connect_method_remote_ip_address
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 firewall_compare_update
 
@@ -4795,7 +4795,7 @@ sub firewall_compare_update {
        return !$error_encountered;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 update_cluster
 
@@ -4891,7 +4891,7 @@ sub update_cluster {
        return 1;
 } ## end sub update_cluster_info
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_cluster_info_file_path
 
@@ -4915,7 +4915,7 @@ sub get_cluster_info_file_path {
        return $self->{cluster_info_file_path};
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_reservation_info_json_file_path
 
@@ -4939,7 +4939,7 @@ sub get_reservation_info_json_file_path
        return $self->{reservation_info_json_file_path};
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 create_reservation_info_json_file
 
@@ -4968,7 +4968,7 @@ sub create_reservation_info_json_file {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 delete_reservation_info_json_file
 
@@ -4990,7 +4990,7 @@ sub delete_reservation_info_json_file {
        return $self->delete_file($json_file_path);
 }
 
-#///////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 1;
 __END__
 

Modified: vcl/trunk/managementnode/lib/VCL/Module/OS/Linux.pm
URL: 
http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/Module/OS/Linux.pm?rev=1793929&r1=1793928&r2=1793929&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/Module/OS/Linux.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/Module/OS/Linux.pm Thu May  4 23:22:17 2017
@@ -32,7 +32,7 @@ VCL::Module::OS::Linux.pm - VCL module t
 
 =cut
 
-##############################################################################
+###############################################################################
 package VCL::Module::OS::Linux;
 
 # Specify the lib path using FindBin
@@ -59,7 +59,7 @@ use Net::Netmask;
 use File::Basename;
 use File::Temp qw(tempfile mktemp);
 
-##############################################################################
+###############################################################################
 
 =head1 CLASS VARIABLES
 
@@ -131,7 +131,7 @@ our $CAPTURE_CLEAR_FILE_PATHS = [
        '/var/log/wtmp',
 ];
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_node_configuration_directory
 
@@ -147,13 +147,13 @@ sub get_node_configuration_directory {
        return $NODE_CONFIGURATION_DIRECTORY;
 }
 
-##############################################################################
+###############################################################################
 
 =head1 OBJECT METHODS
 
 =cut
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_init_modules
 
@@ -268,7 +268,7 @@ sub get_init_modules {
        return @{$self->{init_modules}};
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 firewall
 
@@ -341,7 +341,7 @@ sub firewall {
        return bless {}, 'VCL::Module::OS::Linux::firewall';
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 pre_capture
 
@@ -442,7 +442,7 @@ sub pre_capture {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 post_load
 
@@ -549,7 +549,7 @@ sub post_load {
        return $self->SUPER::post_load();
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 post_reserve
 
@@ -628,7 +628,7 @@ sub post_reserve {
        return $self->SUPER::post_reserve();
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 post_reservation
 
@@ -660,7 +660,7 @@ sub post_reservation {
        return $self->SUPER::post_reservation();
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 update_public_hostname
 
@@ -769,7 +769,7 @@ sub update_public_hostname {
        return !$error_occurred;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 clear_private_keys
 
@@ -803,7 +803,7 @@ sub clear_private_keys {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_static_public_address
 
@@ -930,7 +930,7 @@ sub set_static_public_address {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 start_network_interface
 
@@ -978,7 +978,7 @@ sub start_network_interface {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 stop_network_interface
 
@@ -1026,7 +1026,7 @@ sub stop_network_interface {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 restart_network_interface
 
@@ -1070,7 +1070,7 @@ sub restart_network_interface {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 delete_default_gateway
 
@@ -1109,7 +1109,7 @@ sub delete_default_gateway {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_default_gateway
 
@@ -1167,7 +1167,7 @@ sub set_default_gateway {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 logoff_user
 
@@ -1220,7 +1220,7 @@ sub logoff_user {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 reserve
 
@@ -1259,7 +1259,7 @@ sub reserve {
        return unless $self->SUPER::reserve();
 } ## end sub reserve
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 grant_access
 
@@ -1297,7 +1297,7 @@ sub grant_access {
        }
 } ## end sub grant_access
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 synchronize_time
 
@@ -1374,7 +1374,7 @@ sub synchronize_time {
        return $self->restart_service('ntpd');
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_password
 
@@ -1423,7 +1423,7 @@ sub set_password {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 sanitize
 
@@ -1465,7 +1465,7 @@ sub sanitize {
        return 1;
 } ## end sub sanitize
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 add_vcl_usergroup
 
@@ -1491,7 +1491,7 @@ sub add_vcl_usergroup {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 is_connected
 
@@ -1538,7 +1538,7 @@ sub is_connected {
        }
 } ## end sub is_connected
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 run_script
 
@@ -1612,7 +1612,7 @@ sub run_script {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 file_exists
 
@@ -1681,7 +1681,7 @@ sub file_exists {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 delete_file
 
@@ -1746,7 +1746,7 @@ sub delete_file {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 clear_file
 
@@ -1803,7 +1803,7 @@ sub clear_file {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 create_directory
 
@@ -1863,7 +1863,7 @@ sub create_directory {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 move_file
 
@@ -1915,7 +1915,7 @@ sub move_file {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_available_space
 
@@ -1986,7 +1986,7 @@ sub get_available_space {
        return $bytes_available;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_total_space
 
@@ -2057,7 +2057,7 @@ sub get_total_space {
        return $bytes_total;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 copy_file_from
 
@@ -2107,7 +2107,7 @@ sub copy_file_from {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_file_size
 
@@ -2235,7 +2235,7 @@ sub get_file_size {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_file_permissions
 
@@ -2301,7 +2301,7 @@ sub set_file_permissions {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_file_owner
 
@@ -2370,7 +2370,7 @@ sub set_file_owner {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 activate_interfaces
 
@@ -2454,7 +2454,7 @@ EOF
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_network_configuration
 
@@ -2625,7 +2625,7 @@ sub get_network_configuration {
        return $self->{network_configuration};
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 reboot
 
@@ -2721,7 +2721,7 @@ sub reboot {
 
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 shutdown
 
@@ -2790,7 +2790,7 @@ sub shutdown {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 hibernate
 
@@ -2841,7 +2841,7 @@ sub hibernate {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 create_user
 
@@ -2964,7 +2964,7 @@ sub create_user {
 } ## end sub create_user
 
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 grant_root_access
 
@@ -2999,7 +2999,7 @@ sub grant_root_access {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 delete_user
 
@@ -3126,7 +3126,7 @@ sub delete_user {
        return 1;
 } ## end sub delete_user
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 is_file_on_local_disk
 
@@ -3173,7 +3173,7 @@ sub is_file_on_local_disk {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 =head2 enable_dhcp
 
  Parameters  : $interface_name
@@ -3232,7 +3232,7 @@ sub enable_dhcp {
        return $self->generate_ifcfg_file($interface_name, { 'bootproto' => 
'dhcp' });
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 =head2 generate_ifcfg_file
 
  Parameters  : $interface_name, $parameters
@@ -3334,7 +3334,7 @@ sub generate_ifcfg_file {
        return $self->create_text_file($ifcfg_file_path, 
$updated_ifcfg_contents);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 =head2 get_ifcfg_file_info
 
  Parameters  : $interface_name
@@ -3385,7 +3385,7 @@ sub get_ifcfg_file_info {
        return $info;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 =head2 get_network_bridge_info
 
  Parameters  : none
@@ -3510,7 +3510,7 @@ sub get_network_bridge_info {
        return $network_bridge_info;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 service_exists
 
@@ -3617,7 +3617,7 @@ sub service_exists {
        return (wantarray) ? () : 0;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 is_service_enabled
 
@@ -3657,7 +3657,7 @@ sub is_service_enabled {
 }
 
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 is_service_running
 
@@ -3696,7 +3696,7 @@ sub is_service_running {
        return $init_module->service_running($service_name);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 enable_service
 
@@ -3735,7 +3735,7 @@ sub enable_service {
        return $init_module->enable_service($service_name);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 disable_service
 
@@ -3774,7 +3774,7 @@ sub disable_service {
        return $init_module->disable_service($service_name);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 start_service
 
@@ -3809,7 +3809,7 @@ sub start_service {
        return $init_module->start_service($service_name);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 stop_service
 
@@ -3844,7 +3844,7 @@ sub stop_service {
        return $init_module->stop_service($service_name);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 restart_service
 
@@ -3879,7 +3879,7 @@ sub restart_service {
        return $init_module->restart_service($service_name);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 delete_service
 
@@ -3928,7 +3928,7 @@ sub delete_service {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 check_connection_on_port
 
@@ -3991,7 +3991,7 @@ sub check_connection_on_port {
        return 0;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_cpu_core_count
 
@@ -4047,7 +4047,7 @@ sub get_cpu_core_count {
        return $cpu_core_count;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_cpu_speed
 
@@ -4086,7 +4086,7 @@ sub get_cpu_speed {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_total_memory
 
@@ -4127,7 +4127,7 @@ sub get_total_memory {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_exclude_list
  
@@ -4186,7 +4186,7 @@ sub get_exclude_list {
        return @exclude_lines_cleaned;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_exclude_regex_list
  
@@ -4249,7 +4249,7 @@ sub get_exclude_regex_list {
        return @exclude_regex_list;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 is_file_in_exclude_list
  
@@ -4290,7 +4290,7 @@ sub is_file_in_exclude_list {
        return 0;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 generate_exclude_list_sample
  
@@ -4339,7 +4339,7 @@ EOF
        return $self->create_text_file($sample_file_path, 
$sample_file_contents);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 user_logged_in
 
@@ -4373,7 +4373,7 @@ sub user_logged_in {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_logged_in_users
 
@@ -4419,7 +4419,7 @@ sub get_logged_in_users {
        return @usernames;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 clean_known_files
 
@@ -4473,7 +4473,7 @@ sub clean_known_files {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 user_exists
 
@@ -4523,7 +4523,7 @@ sub user_exists {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 stop_external_sshd
 
@@ -4570,7 +4570,7 @@ sub stop_external_sshd {
        return 1;
 } ## end sub stop_external_sshd
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 configure_sshd_config_file
 
@@ -4702,7 +4702,7 @@ sub configure_sshd_config_file {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 configure_ext_sshd_config_file
 
@@ -4749,7 +4749,7 @@ sub configure_ext_sshd_config_file {
        return $self->configure_sshd_config_file($custom_ext_sshd_parameters, 
$ext_sshd_config_file_path);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 configure_default_sshd
 
@@ -4800,7 +4800,7 @@ sub configure_default_sshd {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 configure_ext_sshd
 
@@ -4878,7 +4878,7 @@ sub configure_ext_sshd {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 configure_rc_local
 
@@ -4943,7 +4943,7 @@ EOF
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 command_exists
 
@@ -4991,7 +4991,7 @@ sub command_exists {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 notify_user_console
 
@@ -5033,7 +5033,7 @@ sub notify_user_console {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 is_64_bit
 
@@ -5173,7 +5173,7 @@ sub is_64_bit {
 #      return $connected_user_info;
 #}
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_port_connection_info
 
@@ -5259,7 +5259,7 @@ sub get_port_connection_info {
        return $connection_info;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 enable_ip_forwarding
 
@@ -5295,7 +5295,7 @@ sub enable_ip_forwarding {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 should_set_user_password
 
@@ -5337,7 +5337,7 @@ sub should_set_user_password {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 grant_connect_method_access
 
@@ -5434,7 +5434,7 @@ sub grant_connect_method_access {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 kill_process
 
@@ -5488,7 +5488,7 @@ sub kill_process {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 is_process_running
 
@@ -5601,7 +5601,7 @@ sub is_process_running {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 is_display_manager_running
 
@@ -5655,7 +5655,7 @@ sub is_display_manager_running {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 generate_ssh_private_key_file
 
@@ -5730,7 +5730,7 @@ sub generate_ssh_private_key_file {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 _generate_ssh_private_key_file_helper
 
@@ -5786,7 +5786,7 @@ sub _generate_ssh_private_key_file_helpe
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 generate_ssh_public_key_file
 
@@ -5845,7 +5845,7 @@ sub generate_ssh_public_key_file {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_ssh_public_key_string
 
@@ -5911,7 +5911,7 @@ sub get_ssh_public_key_string {
        return $public_key_string;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 _get_ssh_public_key_string_helper
 
@@ -5973,7 +5973,7 @@ sub _get_ssh_public_key_string_helper {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 install_package
 
@@ -6030,7 +6030,7 @@ sub install_package {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 mount_nfs_share
 
@@ -6155,7 +6155,7 @@ sub mount_nfs_share {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 unmount_nfs_share
 
@@ -6217,7 +6217,7 @@ sub unmount_nfs_share {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 is_nfs_share_mounted
 
@@ -6258,7 +6258,7 @@ sub is_nfs_share_mounted {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_nfs_mount_string
 
@@ -6317,7 +6317,7 @@ sub get_nfs_mount_string {
        return 0;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 add_fstab_nfs_mount
 
@@ -6373,7 +6373,7 @@ sub add_fstab_nfs_mount {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 remove_matching_fstab_lines
 
@@ -6427,7 +6427,7 @@ sub remove_matching_fstab_lines {
        return $self->create_text_file('/etc/fstab', $updated_fstab_contents);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 update_resolv_conf
 
@@ -6490,7 +6490,7 @@ sub update_resolv_conf {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_product_name
 
@@ -6538,7 +6538,7 @@ sub get_product_name {
 }
 
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_management_node_connected_ip_address
 

Modified: vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/ESXi.pm
URL: 
http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/ESXi.pm?rev=1793929&r1=1793928&r2=1793929&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/ESXi.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/ESXi.pm Thu May  4 
23:22:17 2017
@@ -33,7 +33,7 @@ VCL::Module::OS::Linux::ESXi.pm
 
 =cut
 
-##############################################################################
+###############################################################################
 package VCL::Module::OS::Linux::ESXi;
 
 # Specify the lib path using FindBin
@@ -55,13 +55,13 @@ use diagnostics;
 
 use VCL::utils;
 
-##############################################################################
+###############################################################################
 
 =head1 OBJECT METHODS
 
 =cut
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 post_load
 
@@ -95,7 +95,7 @@ sub post_load {
        return $self->SUPER::post_load();
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 reserve
 
@@ -116,7 +116,7 @@ sub reserve {
    return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 grant_access
 
@@ -179,7 +179,7 @@ sub grant_access {
 
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 sanitize
 
@@ -207,7 +207,7 @@ sub sanitize {
       return 1;
    }
 }
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 =head2 local_read_vcld_config
 
  Parameters  : full path to vcld.conf
@@ -232,7 +232,7 @@ sub local_read_vcld_config {
    return $vcld_config;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_public_ip_address
 
@@ -272,7 +272,7 @@ sub get_public_ip_address {
 }
 
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 enable_firewall_port
 
@@ -297,7 +297,7 @@ sub enable_firewall_port {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_cpu_core_count
 
@@ -324,7 +324,7 @@ sub get_cpu_core_count {
                        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 check_connection_on_port
 
@@ -357,7 +357,7 @@ sub check_connection_on_port {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 user_exists
 
@@ -378,7 +378,7 @@ sub user_exists {
         my $computer_node_name = $self->data->get_computer_node_name();
        return 1;
 }
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 1;
 __END__

Modified: vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/ManagementNode.pm
URL: 
http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/ManagementNode.pm?rev=1793929&r1=1793928&r2=1793929&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/ManagementNode.pm 
(original)
+++ vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/ManagementNode.pm Thu May  
4 23:22:17 2017
@@ -33,7 +33,7 @@ VCL::Module::OS::Linux::ManagementNode.p
 
 =cut
 
-##############################################################################
+###############################################################################
 package VCL::Module::OS::Linux::ManagementNode;
 
 # Specify the lib path using FindBin
@@ -55,7 +55,7 @@ use diagnostics;
 
 use VCL::utils;
 
-##############################################################################
+###############################################################################
 
 =head1 CLASS VARIABLES
 
@@ -75,13 +75,13 @@ use VCL::utils;
 
 our $MN_STAGE_SCRIPTS_DIRECTORY = "$TOOLS/ManagementNode/Scripts";
 
-##############################################################################
+###############################################################################
 
 =head1 OBJECT METHODS
 
 =cut
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 initialize
 
@@ -120,7 +120,7 @@ sub initialize {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 execute
 
@@ -172,7 +172,7 @@ sub execute {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 copy_file_to
 
@@ -200,7 +200,7 @@ sub copy_file_to {
        return $self->copy_file($source, $destination);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 create_text_file
 
@@ -257,7 +257,7 @@ sub create_text_file {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_file_contents
 
@@ -300,7 +300,7 @@ sub get_file_contents {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_management_node_reservation_info_json_file_path
 
@@ -323,7 +323,7 @@ sub get_management_node_reservation_info
        return "/tmp/$reservation_id.json";
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 create_management_node_reservation_info_json_file
 
@@ -350,7 +350,7 @@ sub create_management_node_reservation_i
        return $self->create_text_file($json_file_path, $json_string);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 delete_management_node_reservation_info_json_file
 
@@ -372,7 +372,7 @@ sub delete_management_node_reservation_i
        return $self->delete_file($json_file_path);
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 run_stage_scripts_on_management_node
 
@@ -493,7 +493,7 @@ sub run_stage_scripts_on_management_node
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 check_private_ip_addresses
 
@@ -585,7 +585,7 @@ sub check_private_ip_addresses {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 setup_get_menu
 
@@ -603,7 +603,7 @@ sub setup_get_menu {
        };
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 1;
 __END__

Modified: vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/Ubuntu.pm
URL: 
http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/Ubuntu.pm?rev=1793929&r1=1793928&r2=1793929&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/Ubuntu.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/Ubuntu.pm Thu May  4 
23:22:17 2017
@@ -28,7 +28,7 @@ VCL::Module::OS::Ubuntu.pm - VCL module
 
 =cut
 
-##############################################################################
+###############################################################################
 package VCL::Module::OS::Linux::Ubuntu;
 
 # Specify the lib path using FindBin
@@ -51,7 +51,7 @@ no warnings 'redefine';
 
 use VCL::utils;
 
-##############################################################################
+###############################################################################
 
 =head1 CLASS VARIABLES
 
@@ -83,13 +83,13 @@ our $CAPTURE_DELETE_FILE_PATHS = [
        '/etc/network/interfaces.20*',  # Delete backups VCL makes of 
/etc/network/interfaces
 ];
 
-##############################################################################
+###############################################################################
 
 =head1 OBJECT METHODS
 
 =cut
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_password
 
@@ -136,7 +136,7 @@ sub set_password {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_network_configuration
 
@@ -239,7 +239,7 @@ sub get_network_configuration {
                
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 enable_dhcp
 
@@ -355,7 +355,7 @@ sub enable_dhcp {
 }
 
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 set_static_public_address
 
@@ -552,7 +552,7 @@ sub set_static_public_address {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 activate_interfaces
 
@@ -566,7 +566,7 @@ sub activate_interfaces {
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 hibernate
 
@@ -723,7 +723,7 @@ EOF
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 grubenv_unset_recordfail
 
@@ -763,7 +763,7 @@ sub unset_grubenv_recordfail {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 install_package
 
@@ -821,7 +821,7 @@ sub install_package {
        return;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 _install_package_helper
 
@@ -870,7 +870,7 @@ sub _install_package_helper {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 simulate_install_package
 
@@ -913,7 +913,7 @@ sub simulate_install_package {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 apt_get_update
 
@@ -962,7 +962,7 @@ sub apt_get_update {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 fix_debconf_db
 
@@ -1036,7 +1036,7 @@ sub fix_debconf_db {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_product_name
 
@@ -1085,7 +1085,7 @@ sub get_product_name {
        return $self->{product_name};
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 1;
 __END__
 

Modified: vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/UnixLab.pm
URL: 
http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/UnixLab.pm?rev=1793929&r1=1793928&r2=1793929&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/UnixLab.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/UnixLab.pm Thu May  4 
23:22:17 2017
@@ -24,7 +24,7 @@ VCL::Module::OS::UnixLab.pm - VCL module
 
 =cut
 
-##############################################################################
+###############################################################################
 package VCL::Module::OS::Linux::UnixLab;
 
 # Specify the lib path using FindBin
@@ -46,13 +46,13 @@ use diagnostics;
 
 use VCL::utils;
 
-##############################################################################
+###############################################################################
 
 =head1 OBJECT METHODS
 
 =cut
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 initialize
 
@@ -80,7 +80,7 @@ sub initialize {
 }
 
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 grant_access
 
@@ -137,7 +137,7 @@ EOF
        return 1;
 } ## end sub grant_access
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 sanitize
 
@@ -194,7 +194,7 @@ EOF
        return 1;
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 _trigger_vclclient
 
@@ -227,7 +227,7 @@ sub _trigger_vclclient {
        }
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_public_ip_address
 
@@ -248,7 +248,7 @@ sub get_public_ip_address {
        return $self->data->get_computer_public_ip_address();
 }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 =head2 get_current_imagerevision_id
 
@@ -269,7 +269,7 @@ sub get_current_imagerevision_id {
        return $self->data->get_imagerevision_id();
 }
 
-##############################################################################
+###############################################################################
 
 =head1 BYPASSED SUBROUTINES
 
@@ -356,7 +356,7 @@ sub reserve { return 1; }
 
 sub run_stage_scripts_on_computer { return 1; }
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 1;
 __END__

Modified: vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/firewall.pm
URL: 
http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/firewall.pm?rev=1793929&r1=1793928&r2=1793929&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/firewall.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/firewall.pm Thu May  4 
23:22:17 2017
@@ -28,7 +28,7 @@ VCL::Module::OS::Linux::firewall
 
 =cut
 
-##############################################################################
+###############################################################################
 package VCL::Module::OS::Linux::firewall;
 
 # Specify the lib path using FindBin
@@ -51,13 +51,13 @@ use diagnostics;
 
 use VCL::utils;
 
-##############################################################################
+###############################################################################
 
 =head1 OBJECT METHODS
 
 =cut
 
-#/////////////////////////////////////////////////////////////////////////////
+#//////////////////////////////////////////////////////////////////////////////
 
 1;
 __END__


Reply via email to