mirror of
https://github.com/schoebel/mars
synced 2025-04-01 22:58:34 +00:00
marsadm: do not abort all when systemd template generation fails
This commit is contained in:
parent
a98187c022
commit
fa004afa2a
@ -453,7 +453,10 @@ sub instantiate_systemd_unit {
|
||||
my $text;
|
||||
{
|
||||
local $/; # slurp
|
||||
open(IN, "< $template_file") or ldie "cannot open system template file '$template_file'\n";
|
||||
if (!open(IN, "< $template_file")) {
|
||||
lwarn "cannot open system template file '$template_file'\n";
|
||||
return (0, $outfile);
|
||||
}
|
||||
$text = <IN>;
|
||||
close(IN);
|
||||
}
|
||||
@ -468,7 +471,10 @@ sub instantiate_systemd_unit {
|
||||
return (0, $outfile);
|
||||
}
|
||||
}
|
||||
open(OUT, "> $outfile.tmp") or ldie "cannt create '$outfile'\n";
|
||||
if (!open(OUT, "> $outfile.tmp")) {
|
||||
lwarn "cannot create '$outfile'\n";
|
||||
return (0, $outfile);
|
||||
}
|
||||
print OUT $text;
|
||||
close(OUT);
|
||||
rename("$outfile.tmp", $outfile);
|
||||
|
Loading…
Reference in New Issue
Block a user