2012-08-02 19:11:29 +00:00
|
|
|
|
#! @perl@
|
|
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
|
use warnings;
|
2012-08-02 21:26:23 +00:00
|
|
|
|
use File::Basename;
|
2012-08-02 19:11:29 +00:00
|
|
|
|
use File::Slurp;
|
2013-02-18 14:39:02 +00:00
|
|
|
|
use Sys::Syslog qw(:standard :macros);
|
2012-08-02 21:26:23 +00:00
|
|
|
|
use Cwd 'abs_path';
|
2012-08-02 19:11:29 +00:00
|
|
|
|
|
2013-02-18 14:39:02 +00:00
|
|
|
|
my $out = "@out@";
|
|
|
|
|
|
2015-03-09 15:23:23 +00:00
|
|
|
|
# To be robust against interruption, record what units need to be started etc.
|
2013-01-05 00:05:25 +00:00
|
|
|
|
my $startListFile = "/run/systemd/start-list";
|
2012-08-03 15:53:14 +00:00
|
|
|
|
my $restartListFile = "/run/systemd/restart-list";
|
2012-08-10 14:56:55 +00:00
|
|
|
|
my $reloadListFile = "/run/systemd/reload-list";
|
2012-08-03 15:53:14 +00:00
|
|
|
|
|
2012-08-02 19:11:29 +00:00
|
|
|
|
my $action = shift @ARGV;
|
|
|
|
|
|
2015-03-09 15:23:23 +00:00
|
|
|
|
if (!defined $action || ($action ne "switch" && $action ne "boot" && $action ne "test" && $action ne "dry-activate")) {
|
2012-08-02 19:11:29 +00:00
|
|
|
|
print STDERR <<EOF;
|
|
|
|
|
Usage: $0 [switch|boot|test]
|
|
|
|
|
|
2015-03-09 15:23:23 +00:00
|
|
|
|
switch: make the configuration the boot default and activate now
|
|
|
|
|
boot: make the configuration the boot default
|
|
|
|
|
test: activate the configuration, but don\'t make it the boot default
|
|
|
|
|
dry-activate: show what would be done if this configuration were activated
|
2012-08-02 19:11:29 +00:00
|
|
|
|
EOF
|
|
|
|
|
exit 1;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-17 13:16:10 +00:00
|
|
|
|
# This is a NixOS installation if it has /etc/NIXOS or a proper
|
|
|
|
|
# /etc/os-release.
|
|
|
|
|
die "This is not a NixOS installation!\n" unless
|
|
|
|
|
-f "/etc/NIXOS" || (read_file("/etc/os-release", err_mode => 'quiet') // "") =~ /ID=nixos/s;
|
2012-08-02 19:11:29 +00:00
|
|
|
|
|
2013-02-18 14:39:02 +00:00
|
|
|
|
openlog("nixos", "", LOG_USER);
|
|
|
|
|
|
2012-08-02 19:11:29 +00:00
|
|
|
|
# Install or update the bootloader.
|
2012-08-03 18:07:43 +00:00
|
|
|
|
if ($action eq "switch" || $action eq "boot") {
|
2013-02-18 14:39:02 +00:00
|
|
|
|
system("@installBootLoader@ $out") == 0 or exit 1;
|
2012-08-03 18:07:43 +00:00
|
|
|
|
}
|
2012-08-02 19:11:29 +00:00
|
|
|
|
|
2013-03-28 15:11:54 +00:00
|
|
|
|
# Just in case the new configuration hangs the system, do a sync now.
|
2013-04-08 15:34:14 +00:00
|
|
|
|
system("@coreutils@/bin/sync") unless ($ENV{"NIXOS_NO_SYNC"} // "") eq "1";
|
2013-03-28 15:11:54 +00:00
|
|
|
|
|
|
|
|
|
exit 0 if $action eq "boot";
|
|
|
|
|
|
2012-08-02 19:11:29 +00:00
|
|
|
|
# Check if we can activate the new configuration.
|
|
|
|
|
my $oldVersion = read_file("/run/current-system/init-interface-version", err_mode => 'quiet') // "";
|
2013-02-18 14:39:02 +00:00
|
|
|
|
my $newVersion = read_file("$out/init-interface-version");
|
2012-08-02 19:11:29 +00:00
|
|
|
|
|
|
|
|
|
if ($newVersion ne $oldVersion) {
|
|
|
|
|
print STDERR <<EOF;
|
|
|
|
|
Warning: the new NixOS configuration has an ‘init’ that is
|
|
|
|
|
incompatible with the current configuration. The new configuration
|
|
|
|
|
won\'t take effect until you reboot the system.
|
|
|
|
|
EOF
|
|
|
|
|
exit 100;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Ignore SIGHUP so that we're not killed if we're running on (say)
|
|
|
|
|
# virtual console 1 and we restart the "tty1" unit.
|
|
|
|
|
$SIG{PIPE} = "IGNORE";
|
|
|
|
|
|
2012-08-02 21:26:23 +00:00
|
|
|
|
sub getActiveUnits {
|
2014-04-21 22:30:05 +00:00
|
|
|
|
# FIXME: use D-Bus or whatever to query this, since parsing the
|
|
|
|
|
# output of list-units is likely to break.
|
2014-04-28 06:28:44 +00:00
|
|
|
|
my $lines = `LANG= systemctl list-units --full --no-legend`;
|
2012-08-02 21:26:23 +00:00
|
|
|
|
my $res = {};
|
2014-04-21 22:30:05 +00:00
|
|
|
|
foreach my $line (split '\n', $lines) {
|
|
|
|
|
chomp $line;
|
|
|
|
|
last if $line eq "";
|
2014-04-25 15:42:09 +00:00
|
|
|
|
$line =~ /^(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s/ or next;
|
2014-04-21 22:30:05 +00:00
|
|
|
|
next if $1 eq "UNIT";
|
|
|
|
|
$res->{$1} = { load => $2, state => $3, substate => $4 };
|
2012-08-02 21:26:23 +00:00
|
|
|
|
}
|
|
|
|
|
return $res;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-10 14:56:55 +00:00
|
|
|
|
sub parseFstab {
|
|
|
|
|
my ($filename) = @_;
|
2012-10-12 20:37:14 +00:00
|
|
|
|
my ($fss, $swaps);
|
2012-08-10 14:56:55 +00:00
|
|
|
|
foreach my $line (read_file($filename, err_mode => 'quiet')) {
|
|
|
|
|
chomp $line;
|
2013-01-25 14:54:45 +00:00
|
|
|
|
$line =~ s/^\s*#.*//;
|
2012-08-10 14:56:55 +00:00
|
|
|
|
next if $line =~ /^\s*$/;
|
|
|
|
|
my @xs = split / /, $line;
|
2012-10-12 20:37:14 +00:00
|
|
|
|
if ($xs[2] eq "swap") {
|
|
|
|
|
$swaps->{$xs[0]} = { options => $xs[3] // "" };
|
|
|
|
|
} else {
|
|
|
|
|
$fss->{$xs[1]} = { device => $xs[0], fsType => $xs[2], options => $xs[3] // "" };
|
|
|
|
|
}
|
2012-08-10 14:56:55 +00:00
|
|
|
|
}
|
2012-10-12 20:37:14 +00:00
|
|
|
|
return ($fss, $swaps);
|
2012-08-10 14:56:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-17 17:14:42 +00:00
|
|
|
|
sub parseUnit {
|
|
|
|
|
my ($filename) = @_;
|
|
|
|
|
my $info = {};
|
2015-08-07 03:25:59 +00:00
|
|
|
|
parseKeyValues($info, read_file($filename)) if -f $filename;
|
2014-04-19 12:28:33 +00:00
|
|
|
|
parseKeyValues($info, read_file("${filename}.d/overrides.conf")) if -f "${filename}.d/overrides.conf";
|
|
|
|
|
return $info;
|
2014-02-02 10:24:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sub parseKeyValues {
|
2014-04-19 12:28:33 +00:00
|
|
|
|
my $info = shift;
|
2014-02-02 10:24:49 +00:00
|
|
|
|
foreach my $line (@_) {
|
2012-08-17 17:14:42 +00:00
|
|
|
|
# FIXME: not quite correct.
|
|
|
|
|
$line =~ /^([^=]+)=(.*)$/ or next;
|
|
|
|
|
$info->{$1} = $2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-20 20:19:03 +00:00
|
|
|
|
sub boolIsTrue {
|
|
|
|
|
my ($s) = @_;
|
|
|
|
|
return $s eq "yes" || $s eq "true";
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-09 15:23:23 +00:00
|
|
|
|
sub recordUnit {
|
|
|
|
|
my ($fn, $unit) = @_;
|
|
|
|
|
write_file($fn, { append => 1 }, "$unit\n") if $action ne "dry-activate";
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-17 16:52:31 +00:00
|
|
|
|
# As a fingerprint for determining whether a unit has changed, we use
|
|
|
|
|
# its absolute path. If it has an override file, we append *its*
|
|
|
|
|
# absolute path as well.
|
|
|
|
|
sub fingerprintUnit {
|
|
|
|
|
my ($s) = @_;
|
|
|
|
|
return abs_path($s) . (-f "${s}.d/overrides.conf" ? " " . abs_path "${s}.d/overrides.conf" : "");
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-09 15:23:23 +00:00
|
|
|
|
# Figure out what units need to be stopped, started, restarted or reloaded.
|
|
|
|
|
my (%unitsToStop, %unitsToSkip, %unitsToStart, %unitsToRestart, %unitsToReload);
|
|
|
|
|
|
2015-03-09 15:45:01 +00:00
|
|
|
|
my %unitsToFilter; # units not shown
|
|
|
|
|
|
2015-03-09 15:23:23 +00:00
|
|
|
|
$unitsToStart{$_} = 1 foreach
|
|
|
|
|
split('\n', read_file($startListFile, err_mode => 'quiet') // "");
|
|
|
|
|
|
|
|
|
|
$unitsToRestart{$_} = 1 foreach
|
|
|
|
|
split('\n', read_file($restartListFile, err_mode => 'quiet') // "");
|
|
|
|
|
|
|
|
|
|
$unitsToReload{$_} = 1 foreach
|
|
|
|
|
split '\n', read_file($reloadListFile, err_mode => 'quiet') // "";
|
|
|
|
|
|
2012-08-03 21:13:34 +00:00
|
|
|
|
my $activePrev = getActiveUnits;
|
|
|
|
|
while (my ($unit, $state) = each %{$activePrev}) {
|
2012-08-03 17:47:59 +00:00
|
|
|
|
my $baseUnit = $unit;
|
2012-08-23 16:12:58 +00:00
|
|
|
|
|
2012-08-03 17:47:59 +00:00
|
|
|
|
# Recognise template instances.
|
|
|
|
|
$baseUnit = "$1\@.$2" if $unit =~ /^(.*)@[^\.]*\.(.*)$/;
|
2012-08-03 21:13:34 +00:00
|
|
|
|
my $prevUnitFile = "/etc/systemd/system/$baseUnit";
|
2013-02-18 14:39:02 +00:00
|
|
|
|
my $newUnitFile = "$out/etc/systemd/system/$baseUnit";
|
2012-08-23 16:12:58 +00:00
|
|
|
|
|
|
|
|
|
my $baseName = $baseUnit;
|
|
|
|
|
$baseName =~ s/\.[a-z]*$//;
|
|
|
|
|
|
2012-08-03 21:13:34 +00:00
|
|
|
|
if (-e $prevUnitFile && ($state->{state} eq "active" || $state->{state} eq "activating")) {
|
2014-03-12 17:51:44 +00:00
|
|
|
|
if (! -e $newUnitFile || abs_path($newUnitFile) eq "/dev/null") {
|
2015-08-07 03:25:59 +00:00
|
|
|
|
my $unitInfo = parseUnit($prevUnitFile);
|
|
|
|
|
$unitsToStop{$unit} = 1 if boolIsTrue($unitInfo->{'X-StopOnRemoval'} // "yes");
|
2012-08-23 16:12:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
elsif ($unit =~ /\.target$/) {
|
2013-01-07 15:03:35 +00:00
|
|
|
|
my $unitInfo = parseUnit($newUnitFile);
|
|
|
|
|
|
2012-08-20 20:19:03 +00:00
|
|
|
|
# Cause all active target units to be restarted below.
|
|
|
|
|
# This should start most changed units we stop here as
|
|
|
|
|
# well as any new dependencies (including new mounts and
|
2012-08-23 15:09:44 +00:00
|
|
|
|
# swap devices). FIXME: the suspend target is sometimes
|
|
|
|
|
# active after the system has resumed, which probably
|
|
|
|
|
# should not be the case. Just ignore it.
|
2013-08-29 07:08:31 +00:00
|
|
|
|
if ($unit ne "suspend.target" && $unit ne "hibernate.target" && $unit ne "hybrid-sleep.target") {
|
2013-01-08 16:00:45 +00:00
|
|
|
|
unless (boolIsTrue($unitInfo->{'RefuseManualStart'} // "no")) {
|
2015-03-09 15:23:23 +00:00
|
|
|
|
$unitsToStart{$unit} = 1;
|
|
|
|
|
recordUnit($startListFile, $unit);
|
2015-03-09 15:45:01 +00:00
|
|
|
|
# Don't spam the user with target units that always get started.
|
|
|
|
|
$unitsToFilter{$unit} = 1;
|
2012-08-23 15:09:44 +00:00
|
|
|
|
}
|
2012-08-20 20:19:03 +00:00
|
|
|
|
}
|
2013-01-07 15:03:35 +00:00
|
|
|
|
|
|
|
|
|
# Stop targets that have X-StopOnReconfiguration set.
|
|
|
|
|
# This is necessary to respect dependency orderings
|
|
|
|
|
# involving targets: if unit X starts after target Y and
|
|
|
|
|
# target Y starts after unit Z, then if X and Z have both
|
|
|
|
|
# changed, then X should be restarted after Z. However,
|
|
|
|
|
# if target Y is in the "active" state, X and Z will be
|
|
|
|
|
# restarted at the same time because X's dependency on Y
|
|
|
|
|
# is already satisfied. Thus, we need to stop Y first.
|
|
|
|
|
# Stopping a target generally has no effect on other units
|
|
|
|
|
# (unless there is a PartOf dependency), so this is just a
|
|
|
|
|
# bookkeeping thing to get systemd to do the right thing.
|
2013-01-08 16:00:45 +00:00
|
|
|
|
if (boolIsTrue($unitInfo->{'X-StopOnReconfiguration'} // "no")) {
|
2015-03-09 15:23:23 +00:00
|
|
|
|
$unitsToStop{$unit} = 1;
|
2013-01-07 15:03:35 +00:00
|
|
|
|
}
|
2012-08-23 16:12:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-17 16:52:31 +00:00
|
|
|
|
elsif (fingerprintUnit($prevUnitFile) ne fingerprintUnit($newUnitFile)) {
|
2012-08-10 19:15:59 +00:00
|
|
|
|
if ($unit eq "sysinit.target" || $unit eq "basic.target" || $unit eq "multi-user.target" || $unit eq "graphical.target") {
|
|
|
|
|
# Do nothing. These cannot be restarted directly.
|
2012-08-10 14:56:55 +00:00
|
|
|
|
} elsif ($unit =~ /\.mount$/) {
|
|
|
|
|
# Reload the changed mount unit to force a remount.
|
2015-03-09 15:23:23 +00:00
|
|
|
|
$unitsToReload{$unit} = 1;
|
|
|
|
|
recordUnit($reloadListFile, $unit);
|
2014-12-18 00:47:18 +00:00
|
|
|
|
} elsif ($unit =~ /\.socket$/ || $unit =~ /\.path$/ || $unit =~ /\.slice$/) {
|
2012-08-10 19:15:59 +00:00
|
|
|
|
# FIXME: do something?
|
2012-08-10 14:56:55 +00:00
|
|
|
|
} else {
|
2012-08-17 17:14:42 +00:00
|
|
|
|
my $unitInfo = parseUnit($newUnitFile);
|
2014-03-17 14:02:53 +00:00
|
|
|
|
if (boolIsTrue($unitInfo->{'X-ReloadIfChanged'} // "no")) {
|
2015-03-09 15:23:23 +00:00
|
|
|
|
$unitsToReload{$unit} = 1;
|
|
|
|
|
recordUnit($reloadListFile, $unit);
|
2014-03-17 14:02:53 +00:00
|
|
|
|
}
|
2014-05-05 12:52:24 +00:00
|
|
|
|
elsif (!boolIsTrue($unitInfo->{'X-RestartIfChanged'} // "yes") || boolIsTrue($unitInfo->{'RefuseManualStop'} // "no") ) {
|
2015-03-09 15:23:23 +00:00
|
|
|
|
$unitsToSkip{$unit} = 1;
|
2012-08-17 17:14:42 +00:00
|
|
|
|
} else {
|
2013-01-08 16:00:45 +00:00
|
|
|
|
if (!boolIsTrue($unitInfo->{'X-StopIfChanged'} // "yes")) {
|
2013-01-05 00:05:25 +00:00
|
|
|
|
# This unit should be restarted instead of
|
|
|
|
|
# stopped and started.
|
2015-03-09 15:23:23 +00:00
|
|
|
|
$unitsToRestart{$unit} = 1;
|
|
|
|
|
recordUnit($restartListFile, $unit);
|
2013-01-05 00:05:25 +00:00
|
|
|
|
} else {
|
2016-09-30 14:05:31 +00:00
|
|
|
|
# If this unit is socket-activated, then stop the
|
|
|
|
|
# socket unit(s) as well, and restart the
|
|
|
|
|
# socket(s) instead of the service.
|
|
|
|
|
my $socketActivated = 0;
|
|
|
|
|
if ($unit =~ /\.service$/) {
|
|
|
|
|
my @sockets = split / /, ($unitInfo->{Sockets} // "");
|
|
|
|
|
if (scalar @sockets == 0) {
|
|
|
|
|
@sockets = ("$baseName.socket");
|
|
|
|
|
}
|
|
|
|
|
foreach my $socket (@sockets) {
|
|
|
|
|
if (defined $activePrev->{$socket}) {
|
|
|
|
|
$unitsToStop{$socket} = 1;
|
|
|
|
|
$unitsToStart{$socket} = 1;
|
|
|
|
|
recordUnit($startListFile, $socket);
|
|
|
|
|
$socketActivated = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-01-05 00:05:25 +00:00
|
|
|
|
|
|
|
|
|
# If the unit is not socket-activated, record
|
|
|
|
|
# that this unit needs to be started below.
|
|
|
|
|
# We write this to a file to ensure that the
|
|
|
|
|
# service gets restarted if we're interrupted.
|
|
|
|
|
if (!$socketActivated) {
|
2015-03-09 15:23:23 +00:00
|
|
|
|
$unitsToStart{$unit} = 1;
|
|
|
|
|
recordUnit($startListFile, $unit);
|
2013-01-05 00:05:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-03-09 15:23:23 +00:00
|
|
|
|
$unitsToStop{$unit} = 1;
|
2013-01-05 00:05:25 +00:00
|
|
|
|
}
|
2012-08-17 17:14:42 +00:00
|
|
|
|
}
|
2012-08-10 14:56:55 +00:00
|
|
|
|
}
|
2012-08-02 21:26:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-10 14:56:55 +00:00
|
|
|
|
sub pathToUnitName {
|
|
|
|
|
my ($path) = @_;
|
2016-07-01 06:28:04 +00:00
|
|
|
|
open my $cmd, "-|", "@systemd@/bin/systemd-escape", "--suffix=mount", "-p", $path
|
2015-10-22 17:40:00 +00:00
|
|
|
|
or die "Unable to escape $path!\n";
|
|
|
|
|
my $escaped = join "", <$cmd>;
|
|
|
|
|
chomp $escaped;
|
|
|
|
|
close $cmd or die;
|
|
|
|
|
return $escaped;
|
2012-08-10 14:56:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-23 16:12:58 +00:00
|
|
|
|
sub unique {
|
|
|
|
|
my %seen;
|
|
|
|
|
my @res;
|
|
|
|
|
foreach my $name (@_) {
|
|
|
|
|
next if $seen{$name};
|
|
|
|
|
$seen{$name} = 1;
|
|
|
|
|
push @res, $name;
|
|
|
|
|
}
|
|
|
|
|
return @res;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-10 14:56:55 +00:00
|
|
|
|
# Compare the previous and new fstab to figure out which filesystems
|
|
|
|
|
# need a remount or need to be unmounted. New filesystems are mounted
|
2012-10-12 20:37:14 +00:00
|
|
|
|
# automatically by starting local-fs.target. FIXME: might be nicer if
|
|
|
|
|
# we generated units for all mounts; then we could unify this with the
|
|
|
|
|
# unit checking code above.
|
|
|
|
|
my ($prevFss, $prevSwaps) = parseFstab "/etc/fstab";
|
2013-02-18 14:39:02 +00:00
|
|
|
|
my ($newFss, $newSwaps) = parseFstab "$out/etc/fstab";
|
2012-10-15 01:12:11 +00:00
|
|
|
|
foreach my $mountPoint (keys %$prevFss) {
|
2012-10-12 20:37:14 +00:00
|
|
|
|
my $prev = $prevFss->{$mountPoint};
|
|
|
|
|
my $new = $newFss->{$mountPoint};
|
2015-10-22 17:40:00 +00:00
|
|
|
|
my $unit = pathToUnitName($mountPoint);
|
2012-08-10 14:56:55 +00:00
|
|
|
|
if (!defined $new) {
|
2012-10-12 20:37:14 +00:00
|
|
|
|
# Filesystem entry disappeared, so unmount it.
|
2015-03-09 15:23:23 +00:00
|
|
|
|
$unitsToStop{$unit} = 1;
|
2012-08-10 14:56:55 +00:00
|
|
|
|
} elsif ($prev->{fsType} ne $new->{fsType} || $prev->{device} ne $new->{device}) {
|
|
|
|
|
# Filesystem type or device changed, so unmount and mount it.
|
2015-03-09 15:23:23 +00:00
|
|
|
|
$unitsToStop{$unit} = 1;
|
|
|
|
|
$unitsToStart{$unit} = 1;
|
|
|
|
|
recordUnit($startListFile, $unit);
|
2012-08-10 14:56:55 +00:00
|
|
|
|
} elsif ($prev->{options} ne $new->{options}) {
|
|
|
|
|
# Mount options changes, so remount it.
|
2015-03-09 15:23:23 +00:00
|
|
|
|
$unitsToReload{$unit} = 1;
|
|
|
|
|
recordUnit($reloadListFile, $unit);
|
2012-08-10 14:56:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-12 20:37:14 +00:00
|
|
|
|
# Also handles swap devices.
|
2012-10-15 01:12:11 +00:00
|
|
|
|
foreach my $device (keys %$prevSwaps) {
|
2012-10-12 20:37:14 +00:00
|
|
|
|
my $prev = $prevSwaps->{$device};
|
|
|
|
|
my $new = $newSwaps->{$device};
|
|
|
|
|
if (!defined $new) {
|
|
|
|
|
# Swap entry disappeared, so turn it off. Can't use
|
|
|
|
|
# "systemctl stop" here because systemd has lots of alias
|
|
|
|
|
# units that prevent a stop from actually calling
|
|
|
|
|
# "swapoff".
|
|
|
|
|
print STDERR "stopping swap device: $device\n";
|
|
|
|
|
system("@utillinux@/sbin/swapoff", $device);
|
|
|
|
|
}
|
|
|
|
|
# FIXME: update swap options (i.e. its priority).
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-09 15:23:23 +00:00
|
|
|
|
|
|
|
|
|
# Should we have systemd re-exec itself?
|
2016-02-03 13:58:18 +00:00
|
|
|
|
my $prevSystemd = abs_path("/proc/1/exe") // "/unknown";
|
2015-04-13 10:28:12 +00:00
|
|
|
|
my $newSystemd = abs_path("@systemd@/lib/systemd/systemd") or die;
|
|
|
|
|
my $restartSystemd = $prevSystemd ne $newSystemd;
|
2015-03-09 15:23:23 +00:00
|
|
|
|
|
|
|
|
|
|
2015-03-09 15:45:01 +00:00
|
|
|
|
sub filterUnits {
|
|
|
|
|
my ($units) = @_;
|
|
|
|
|
my @res;
|
|
|
|
|
foreach my $unit (sort(keys %{$units})) {
|
|
|
|
|
push @res, $unit if !defined $unitsToFilter{$unit};
|
|
|
|
|
}
|
|
|
|
|
return @res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
my @unitsToStopFiltered = filterUnits(\%unitsToStop);
|
|
|
|
|
my @unitsToStartFiltered = filterUnits(\%unitsToStart);
|
|
|
|
|
|
|
|
|
|
|
2015-03-09 15:23:23 +00:00
|
|
|
|
# Show dry-run actions.
|
|
|
|
|
if ($action eq "dry-activate") {
|
2015-03-09 15:45:01 +00:00
|
|
|
|
print STDERR "would stop the following units: ", join(", ", @unitsToStopFiltered), "\n"
|
|
|
|
|
if scalar @unitsToStopFiltered > 0;
|
2015-03-09 15:23:23 +00:00
|
|
|
|
print STDERR "would NOT stop the following changed units: ", join(", ", sort(keys %unitsToSkip)), "\n"
|
|
|
|
|
if scalar(keys %unitsToSkip) > 0;
|
|
|
|
|
print STDERR "would restart systemd\n" if $restartSystemd;
|
|
|
|
|
print STDERR "would restart the following units: ", join(", ", sort(keys %unitsToRestart)), "\n"
|
|
|
|
|
if scalar(keys %unitsToRestart) > 0;
|
2015-03-09 15:45:01 +00:00
|
|
|
|
print STDERR "would start the following units: ", join(", ", @unitsToStartFiltered), "\n"
|
|
|
|
|
if scalar @unitsToStartFiltered;
|
2015-03-09 15:23:23 +00:00
|
|
|
|
print STDERR "would reload the following units: ", join(", ", sort(keys %unitsToReload)), "\n"
|
|
|
|
|
if scalar(keys %unitsToReload) > 0;
|
|
|
|
|
exit 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
syslog(LOG_NOTICE, "switching to system configuration $out");
|
|
|
|
|
|
|
|
|
|
if (scalar (keys %unitsToStop) > 0) {
|
2015-03-09 15:45:01 +00:00
|
|
|
|
print STDERR "stopping the following units: ", join(", ", @unitsToStopFiltered), "\n"
|
|
|
|
|
if scalar @unitsToStopFiltered;
|
2015-03-09 15:23:23 +00:00
|
|
|
|
system("systemctl", "stop", "--", sort(keys %unitsToStop)); # FIXME: ignore errors?
|
2012-08-03 21:13:34 +00:00
|
|
|
|
}
|
2012-08-03 17:29:56 +00:00
|
|
|
|
|
2015-03-09 15:23:23 +00:00
|
|
|
|
print STDERR "NOT restarting the following changed units: ", join(", ", sort(keys %unitsToSkip)), "\n"
|
|
|
|
|
if scalar(keys %unitsToSkip) > 0;
|
2012-08-17 17:14:42 +00:00
|
|
|
|
|
2012-08-02 19:11:29 +00:00
|
|
|
|
# Activate the new configuration (i.e., update /etc, make accounts,
|
|
|
|
|
# and so on).
|
|
|
|
|
my $res = 0;
|
|
|
|
|
print STDERR "activating the configuration...\n";
|
2013-02-18 14:39:02 +00:00
|
|
|
|
system("$out/activate", "$out") == 0 or $res = 2;
|
2012-08-02 19:11:29 +00:00
|
|
|
|
|
2012-09-21 18:58:28 +00:00
|
|
|
|
# Restart systemd if necessary.
|
2015-03-09 15:23:23 +00:00
|
|
|
|
if ($restartSystemd) {
|
2012-09-21 18:58:28 +00:00
|
|
|
|
print STDERR "restarting systemd...\n";
|
2014-04-21 22:30:05 +00:00
|
|
|
|
system("@systemd@/bin/systemctl", "daemon-reexec") == 0 or $res = 2;
|
2012-09-21 18:58:28 +00:00
|
|
|
|
}
|
2012-08-02 19:11:29 +00:00
|
|
|
|
|
2012-08-23 16:12:58 +00:00
|
|
|
|
# Forget about previously failed services.
|
2014-04-21 22:30:05 +00:00
|
|
|
|
system("@systemd@/bin/systemctl", "reset-failed");
|
2012-08-23 16:12:58 +00:00
|
|
|
|
|
2014-04-21 22:30:05 +00:00
|
|
|
|
# Make systemd reload its units.
|
|
|
|
|
system("@systemd@/bin/systemctl", "daemon-reload") == 0 or $res = 3;
|
2012-08-02 19:11:29 +00:00
|
|
|
|
|
2017-02-18 14:01:32 +00:00
|
|
|
|
# Set the new tmpfiles
|
|
|
|
|
print STDERR "setting up tmpfiles\n";
|
|
|
|
|
system("@systemd@/bin/systemd-tmpfiles", "--create", "--remove", "--exclude-prefix=/dev") == 0 or $res = 3;
|
|
|
|
|
|
2015-04-01 14:28:18 +00:00
|
|
|
|
# Reload units that need it. This includes remounting changed mount
|
|
|
|
|
# units.
|
|
|
|
|
if (scalar(keys %unitsToReload) > 0) {
|
|
|
|
|
print STDERR "reloading the following units: ", join(", ", sort(keys %unitsToReload)), "\n";
|
|
|
|
|
system("@systemd@/bin/systemctl", "reload", "--", sort(keys %unitsToReload)) == 0 or $res = 4;
|
|
|
|
|
unlink($reloadListFile);
|
|
|
|
|
}
|
2014-11-02 22:02:45 +00:00
|
|
|
|
|
2013-01-05 00:05:25 +00:00
|
|
|
|
# Restart changed services (those that have to be restarted rather
|
|
|
|
|
# than stopped and started).
|
2015-03-09 15:23:23 +00:00
|
|
|
|
if (scalar(keys %unitsToRestart) > 0) {
|
|
|
|
|
print STDERR "restarting the following units: ", join(", ", sort(keys %unitsToRestart)), "\n";
|
|
|
|
|
system("@systemd@/bin/systemctl", "restart", "--", sort(keys %unitsToRestart)) == 0 or $res = 4;
|
2013-01-05 00:05:25 +00:00
|
|
|
|
unlink($restartListFile);
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-20 20:19:03 +00:00
|
|
|
|
# Start all active targets, as well as changed units we stopped above.
|
|
|
|
|
# The latter is necessary because some may not be dependencies of the
|
|
|
|
|
# targets (i.e., they were manually started). FIXME: detect units
|
|
|
|
|
# that are symlinks to other units. We shouldn't start both at the
|
|
|
|
|
# same time because we'll get a "Failed to add path to set" error from
|
|
|
|
|
# systemd.
|
2015-03-09 15:45:01 +00:00
|
|
|
|
print STDERR "starting the following units: ", join(", ", @unitsToStartFiltered), "\n"
|
|
|
|
|
if scalar @unitsToStartFiltered;
|
2015-03-09 15:23:23 +00:00
|
|
|
|
system("@systemd@/bin/systemctl", "start", "--", sort(keys %unitsToStart)) == 0 or $res = 4;
|
2013-01-05 00:05:25 +00:00
|
|
|
|
unlink($startListFile);
|
2012-08-10 14:56:55 +00:00
|
|
|
|
|
2012-08-02 19:11:29 +00:00
|
|
|
|
|
2012-08-03 21:13:34 +00:00
|
|
|
|
# Print failed and new units.
|
2012-08-06 19:48:46 +00:00
|
|
|
|
my (@failed, @new, @restarting);
|
2012-08-03 21:13:34 +00:00
|
|
|
|
my $activeNew = getActiveUnits;
|
|
|
|
|
while (my ($unit, $state) = each %{$activeNew}) {
|
2014-02-02 14:41:26 +00:00
|
|
|
|
if ($state->{state} eq "failed") {
|
|
|
|
|
push @failed, $unit;
|
|
|
|
|
}
|
|
|
|
|
elsif ($state->{state} eq "auto-restart") {
|
|
|
|
|
# A unit in auto-restart state is a failure *if* it previously failed to start
|
2014-04-21 22:30:05 +00:00
|
|
|
|
my $lines = `@systemd@/bin/systemctl show '$unit'`;
|
|
|
|
|
my $info = {};
|
|
|
|
|
parseKeyValues($info, split("\n", $lines));
|
2014-02-02 14:41:26 +00:00
|
|
|
|
|
2014-04-21 22:30:05 +00:00
|
|
|
|
if ($info->{ExecMainStatus} ne '0') {
|
2014-02-02 14:41:26 +00:00
|
|
|
|
push @failed, $unit;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
elsif ($state->{state} ne "failed" && !defined $activePrev->{$unit}) {
|
|
|
|
|
push @new, $unit;
|
|
|
|
|
}
|
2012-08-03 14:40:01 +00:00
|
|
|
|
}
|
2012-08-03 21:13:34 +00:00
|
|
|
|
|
|
|
|
|
print STDERR "the following new units were started: ", join(", ", sort(@new)), "\n"
|
|
|
|
|
if scalar @new > 0;
|
|
|
|
|
|
2012-08-03 14:40:01 +00:00
|
|
|
|
if (scalar @failed > 0) {
|
2012-08-03 17:47:59 +00:00
|
|
|
|
print STDERR "warning: the following units failed: ", join(", ", sort(@failed)), "\n";
|
2012-08-03 14:40:01 +00:00
|
|
|
|
foreach my $unit (@failed) {
|
|
|
|
|
print STDERR "\n";
|
2012-08-03 18:39:59 +00:00
|
|
|
|
system("COLUMNS=1000 @systemd@/bin/systemctl status --no-pager '$unit' >&2");
|
2012-08-03 14:40:01 +00:00
|
|
|
|
}
|
|
|
|
|
$res = 4;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-18 14:39:02 +00:00
|
|
|
|
if ($res == 0) {
|
|
|
|
|
syslog(LOG_NOTICE, "finished switching to system configuration $out");
|
|
|
|
|
} else {
|
|
|
|
|
syslog(LOG_ERR, "switching to system configuration $out failed (status $res)");
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-02 19:11:29 +00:00
|
|
|
|
exit $res;
|