Skip to content
Snippets Groups Projects
Commit 829cae38 authored by Torbjörn Lönnemark's avatar Torbjörn Lönnemark
Browse files

Fix bug introduced by PR #348

It updated the name of the exec resource used for restarting the network
service, but didn't update all the resources notifying it.

Fixes: 4185592f
parent 68841e37
No related branches found
No related tags found
No related merge requests found
......@@ -207,11 +207,11 @@ class network (
}
$manage_config_file_notify = $config_file_notify ? {
'class_default' => "Exec[${service_restart_exec}]",
'class_default' => "Exec[network_restart]",
'undef' => undef,
'' => undef,
undef => undef,
true => "Exec[${service_restart_exec}]",
true => "Exec[network_restart]",
false => undef,
default => $config_file_notify,
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment