Blame CommonInstall/util_startup.pl

Packit 857059
#!/usr/bin/perl
Packit 857059
# BEGIN_ICS_COPYRIGHT8 ****************************************
Packit 857059
# 
Packit 857059
# Copyright (c) 2015-2017, Intel Corporation
Packit 857059
# 
Packit 857059
# Redistribution and use in source and binary forms, with or without
Packit 857059
# modification, are permitted provided that the following conditions are met:
Packit 857059
# 
Packit 857059
#     * Redistributions of source code must retain the above copyright notice,
Packit 857059
#       this list of conditions and the following disclaimer.
Packit 857059
#     * Redistributions in binary form must reproduce the above copyright
Packit 857059
#       notice, this list of conditions and the following disclaimer in the
Packit 857059
#       documentation and/or other materials provided with the distribution.
Packit 857059
#     * Neither the name of Intel Corporation nor the names of its contributors
Packit 857059
#       may be used to endorse or promote products derived from this software
Packit 857059
#       without specific prior written permission.
Packit 857059
# 
Packit 857059
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Packit 857059
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit 857059
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Packit 857059
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
Packit 857059
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit 857059
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Packit 857059
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Packit 857059
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Packit 857059
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Packit 857059
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 857059
# 
Packit 857059
# END_ICS_COPYRIGHT8   ****************************************
Packit 857059
Packit 857059
# [ICS VERSION STRING: unknown]
Packit 857059
use strict;
Packit 857059
#use Term::ANSIColor;
Packit 857059
#use Term::ANSIColor qw(:constants);
Packit 857059
#use File::Basename;
Packit 857059
#use Math::BigInt;
Packit 857059
Packit 857059
# ===========================================================================
Packit 857059
# startup scripts
Packit 857059
Packit 857059
# on Some Os's this configures startup file dependencies, especially for
Packit 857059
# parallel startup optimizations
Packit 857059
my $INSSERV_CONF="/etc/insserv.conf";
Packit 857059
# where master copy of init scripts are installed
Packit 857059
my $INIT_DIR = "/etc/init.d";
Packit 857059
my $SYSTEMCTL_EXEC = system("command -v systemctl > /dev/null 2>&1");
Packit 857059
Packit 857059
sub disable_autostart($)
Packit 857059
{
Packit 857059
	my($WhichStartup) = shift();
Packit 857059
Packit 857059
	# disable autostart but leave any kill scripts so stopped on shutdown
Packit 857059
	# Note on SLES off removes kill scripts too, on redhat they remain
Packit 857059
	if($SYSTEMCTL_EXEC eq 0 && 
Packit 857059
		($WhichStartup eq "opafm" || $WhichStartup eq "opa" || $WhichStartup eq "ibacm"))
Packit 857059
	{
Packit 857059
		system "systemctl disable $WhichStartup >/dev/null 2>&1;;
Packit 857059
	} else {
Packit 857059
		system "/sbin/chkconfig $WhichStartup off > /dev/null 2>&1;;
Packit 857059
	}
Packit 857059
}
Packit 857059
Packit 857059
sub enable_autostart($)
Packit 857059
{
Packit 857059
	my($WhichStartup) = shift();
Packit 857059
Packit 857059
	# cleanup to be safe
Packit 857059
	if($SYSTEMCTL_EXEC eq 0 && 
Packit 857059
		($WhichStartup eq "opafm" || $WhichStartup eq "opa" || $WhichStartup eq "ibacm"))
Packit 857059
	{
Packit 857059
		system "systemctl enable $WhichStartup >/dev/null 2>&1;;
Packit 857059
	} else {
Packit 857059
		system "/sbin/chkconfig --del $WhichStartup > /dev/null 2>&1;;
Packit 857059
		system "/sbin/chkconfig --add $WhichStartup > /dev/null 2>&1;;
Packit 857059
		# make sure its enabled now
Packit 857059
		system "/sbin/chkconfig $WhichStartup on > /dev/null 2>&1;;
Packit 857059
	}
Packit 857059
}
Packit 857059
Packit 857059
# Is given startup script currently configured to autostart
Packit 857059
sub IsAutostart($)
Packit 857059
{
Packit 857059
	my($WhichStartup) = shift();
Packit 857059
Packit 857059
	if($SYSTEMCTL_EXEC eq 0 &&
Packit 857059
	   ($WhichStartup eq "opafm" || $WhichStartup eq "opa" || $WhichStartup eq "ibacm"))
Packit 857059
	{
Packit 857059
		my($isEnabled) = `systemctl is-enabled $WhichStartup 2>/dev/null`;
Packit 857059
		chomp($isEnabled);
Packit 857059
		if($isEnabled eq "disabled" || $isEnabled eq "")
Packit 857059
		{
Packit 857059
			return 0;
Packit 857059
		} else {
Packit 857059
			return 1;
Packit 857059
		}
Packit 857059
	} else {
Packit 857059
		my $logoutput;
Packit 857059
		open(CHKCONFIG,"/sbin/chkconfig --list $WhichStartup 2> /dev/null |") || Abort "Couldn't open a pipe for chkconfig\n";
Packit 857059
		$logoutput = <CHKCONFIG>;
Packit 857059
		close(CHKCONFIG);
Packit 857059
		# remove startup name from output, this way opamon is not mistaken for "on"
Packit 857059
		$logoutput=~s/^$WhichStartup//;
Packit 857059
		if (grep /:on/, $logoutput)
Packit 857059
		{
Packit 857059
			return 1;
Packit 857059
		} elsif ( `ls /etc/rc.d/rc3.d/S*$WhichStartup 2>/dev/null` ne "" ||
Packit 857059
			`ls /etc/init.d/rc3.d/S*$WhichStartup 2>/dev/null` ne "") {
Packit 857059
			# this case is an old install being updated.
Packit 857059
			# A SLES OS may have no link from init.d to rc.d. So we check init.d folder as well.
Packit 857059
			return 1;
Packit 857059
		} else {
Packit 857059
			return 0;
Packit 857059
		}
Packit 857059
	}
Packit 857059
}