summaryrefslogtreecommitdiff
path: root/manifests/networkd.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/networkd.pp')
-rw-r--r--manifests/networkd.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/networkd.pp b/manifests/networkd.pp
index 5b34a32..7c06b58 100644
--- a/manifests/networkd.pp
+++ b/manifests/networkd.pp
@@ -1,7 +1,7 @@
class networking::networkd (
Boolean $notify_ = true,
Boolean $manage_directory = true,
- String $path = "/etc/systemd/network",
+ String $path = '/etc/systemd/network',
) {
if $manage_directory {
file { $path:
@@ -14,7 +14,7 @@ class networking::networkd (
# Why this instead of `networkctl reload`?
if $notify_ {
exec { 'reload networkd':
- command => 'systemctl reload-or-restart systemd-networkd',
+ command => 'systemctl reload-or-restart systemd-networkd',
path => ['/bin', '/usr/bin',],
refreshonly => true,
}