mirror of
https://github.com/schoebel/mars
synced 2024-12-28 18:03:12 +00:00
marsadm: activate systemd unit only when device present
This commit is contained in:
parent
51e12bf9d4
commit
0756bdc9b8
@ -449,6 +449,11 @@ sub systemd_activate {
|
||||
lprint "Overriding unit activate=$do_activate with $override\n" if $verbose;
|
||||
$do_activate = $override;
|
||||
}
|
||||
my $dev = "/dev/mars/$res";
|
||||
if ($do_activate && ! -b $dev) {
|
||||
lprint "Device $dev not present, cannot activate systemd unit\n" if $verbose;
|
||||
$do_activate = 0;
|
||||
}
|
||||
my $oper = $do_activate ? "start" : "stop";
|
||||
my $unit_path = "$mars/resource-$res/systemd-$oper-unit";
|
||||
my $unit = get_link($unit_path, 2);
|
||||
|
Loading…
Reference in New Issue
Block a user