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
|
use strict;
use warnings;
return [
{
'accept' => [
'.*',
{
'type' => 'leaf',
'value_type' => 'uniline',
'warn' => 'Unexpected systemd parameter. Please contact cme author to update systemd model.'
}
],
'element' => [
'Timer',
{
'config_class_name' => 'Systemd::Section::Timer',
'type' => 'node'
},
'Unit',
{
'config_class_name' => 'Systemd::Section::TimerUnit',
'type' => 'node'
},
'Install',
{
'config_class_name' => 'Systemd::Section::Install',
'type' => 'node'
}
],
'generated_by' => 'parse-man.pl from systemd doc',
'name' => 'Systemd::StandAlone::Timer',
'rw_config' => {
'auto_create' => '1',
'auto_delete' => '1',
'backend' => 'Systemd::Unit'
}
}
]
;
|