1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
#
#
# Copyright 2001-2022 Double Precision, Inc. See COPYING for
# distribution information.
my $fh=new FileHandle;
my $pid;
# If we're getting restarted by systemd, ignore signals to let us wrap things
# up.
$SIG{'TERM'} =
$SIG{'QUIT'} =
$SIG{'INT'} = 'IGNORE';
die $cgi->header("text/plain") . "Cannot start process: $!\n"
unless (defined $fh) && (defined ($pid=open($fh, "-|")));
if (! $pid)
{
my $errflag=0;
open(STDERR, ">&STDOUT");
foreach (ReadDirList("added"))
{
my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
$atime,$mtime,$ctime,$blksize,$blocks)
= stat("$sysconfdir/webadmin/added/$_");
next unless $mode;
print "Creating $_...\n";
mkdir("$sysconfdir/$_", $mode);
}
unlink("$sysconfdir/webadmin/subdirs-added");
foreach (ReadConfigFiles())
{
if ( -f "$sysconfdir/webadmin/added/$_" )
{
print "Installing $_...\n";
my $newfilename="$sysconfdir/$_";
$newfilename=$authdaemonrc if $newfilename eq "$sysconfdir/authdaemonrc";
$newfilename=$authldaprc if $newfilename eq "$sysconfdir/authldaprc";
$newfilename=$authmysqlrc if $newfilename eq "$sysconfdir/authmysqlrc";
$newfilename=$authpgsqlrc if $newfilename eq "$sysconfdir/authpgsqlrc";
my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
$atime,$mtime,$ctime,$blksize,$blocks)
= stat($newfilename);
if ($mode)
{
chmod ($mode, "$sysconfdir/webadmin/added/$_");
chown ($uid, $gid, "$sysconfdir/webadmin/added/$_");
}
($errflag=1, print "ERROR: $!\n")
if ! rename ("$sysconfdir/webadmin/added/$_", $newfilename);
}
if ( -f "$sysconfdir/webadmin/removed/$_" )
{
print "Deleting $_...\n";
($errflag=1, print "ERROR: $!\n")
if ! unlink ("$sysconfdir/webadmin/removed/$_",
"$sysconfdir/$_");
}
}
foreach (ReadDirList("removed"))
{
print "Removing $_...\n";
rmdir("$sysconfdir/$_");
}
unlink("$sysconfdir/webadmin/subdirs-removed");
$fh=new FileHandle "$sysconfdir/webadmin/changed";
if (defined $fh)
{
my $line;
while (defined($line=<$fh>))
{
next if $errflag;
chomp $line;
next unless $line =~ /(.+)/;
$line=$1;
print "Executing $line...\n";
my $pid = fork;
if (! defined $pid)
{
print " Fork failed\n";
$errflag = 1;
}
else
{
if ($pid == 0)
{
# If the command ends in a &, the shell will put it
# in a background. This is used with systemctl restart,
# and for that one we want to reset signal handlers to
# DEFAULT. systemctl waits for systemd to finish, but
# systemd will want to kill the entire service including
# systemctl itself.
#
# We're blocking signals, we're finishing up, but
# let systemctl run in the background with default signal
# handlers, which will SIGTERM that process.
if ($line =~ /&$/)
{
$SIG{'TERM'} =
$SIG{'QUIT'} =
$SIG{'INT'} = 'DEFAULT';
}
exec($ENV{'SHELL'}, "-c", $line);
print " ... command execution failed.\n";
exit(1);
}
waitpid $pids, 0;
$errflag = 1 unless $? == 0;
}
}
close($fh);
}
my @leftovers=ReadConfigFiles();
unlink ("$sysconfdir/webadmin/changed")
if $#leftovers < 0 && $errflag == 0;
exit 0;
}
my $output=htmlescape(join("", <$fh>));
close($fh);
display_form("admin-save.html",
{
"OUTPUT" => $output
}
);
exit 0
|