Config-Model-Systemd
view release on metacpan or search on metacpan
contrib/parse-man.pl view on Meta::CPAN
description="When true, cme will disable a configuration file supplied by the vendor by placing place a symlink to /dev/null with the same filename as the vendor configuration file. See L<systemd-system.conf> for details." -
element:$name
type=warped_node
config_class_name=$sub_class
$common_warp -
element:Unit
type=warped_node
config_class_name=Systemd::Section::$unit_class
$common_warp -
element:Install
type=warped_node
config_class_name=Systemd::Section::Install
$common_warp -
rw_config
backend=Systemd::Unit
file=&index.$service
auto_delete=1
auto_create=1 !
);
$meta_root->load(
qq!
class:Systemd::StandAlone::$name
element:$name
type=node
config_class_name=$sub_class -
element:Unit
type=node
config_class_name=Systemd::Section::$unit_class -
element:Install
type=node
config_class_name=Systemd::Section::Install -
rw_config
backend=Systemd::Unit
auto_delete=1
auto_create=1 !
);
# Link the class above to base Systemd class
$meta_root->load(
qq!
class:Systemd
generated_by="parse-man.pl from systemd doc"
element:$service
type=hash
index_type=string
cargo
type=node
config_class_name=Systemd::$name - -
rw_config
backend=Systemd
auto_create=1
auto_delete=1 -
!
);
}
my @moved = qw/FailureAction SuccessAction StartLimitBurst StartLimitInterval RebootArgument/;
my %move_target = qw/StartLimitInterval StartLimitIntervalSec/;
# check also src/core/load-fragment-gperf.gperf.m4 is systemd source
# for "compatibility" elements
foreach my $from (@moved) {
my $to = $move_target{$from} || $from;
move_deprecated_element($meta_root, $from, $to);
}
# StartLimitInterval is also deprecated in Unit
say "Handling move of StartLimitInterval to StartLimitIntervalSec in unit";
$meta_root->load( steps => [
'class:Systemd::Section::Unit',
qq!element:StartLimitInterval type=leaf value_type=uniline status=deprecated!,
qq!warn="StartLimitInterval is now StartLimitIntervalSec."!
]);
# handle migration from both service and unit
$meta_root->load( steps => [
qq!class:Systemd::Section::ServiceUnit element:StartLimitIntervalSec!,
qq!migrate_from variables:unit="- StartLimitInterval"!,
# $service variable is defined in move_deprecated element function
q!use_eval=1 formula="$unit || $service"!
]);
# renamed element in Unit
say "Handling move of OnFailureIsolate to OnFailureJobMode in unit";
$meta_root->load( steps => [
'class:Systemd::Section::Unit',
q!element:OnFailureIsolate type=leaf value_type=uniline status=deprecated!,
q!warn="OnFailureIsolate is now OnFailureJobMode." -!,
q!element:OnFailureJobMode!,
q!migrate_from variables:unit="- OnFailureIsolate"!,
q!formula="$unit"!
]);
say "Saving systemd model...";
$rw_obj->write_all;
say "Done.";
( run in 0.666 second using v1.01-cache-2.11-cpan-364913b4093 )