summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-01-04 18:17:59 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-01-04 18:17:59 +0100
commitd615d1da467310aa9c8f43056dc0b328a57f092e (patch)
tree3b0da194b92458e1dc095edb3a45702851dcb65d
parentHopefully fix blog. (diff)
downloadwebdav_server-d615d1da467310aa9c8f43056dc0b328a57f092e.tar.gz
webdav_server-d615d1da467310aa9c8f43056dc0b328a57f092e.tar.xz
Set refreshonly for wpa_supplicant.
-rw-r--r--modules/wpa_supplicant/manifests/interface.pp5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/wpa_supplicant/manifests/interface.pp b/modules/wpa_supplicant/manifests/interface.pp
index 8254359..10373d1 100644
--- a/modules/wpa_supplicant/manifests/interface.pp
+++ b/modules/wpa_supplicant/manifests/interface.pp
@@ -13,7 +13,8 @@ define wpa_supplicant::interface (
networks => $networks
}),
} ~> exec { "Reload wpa_supplicant for ${interface}":
- command => [ 'wpa_cli', 'reconfigure', '-i', $interface, ],
- path => [ '/bin', '/usr/bin', ],
+ command => [ 'wpa_cli', 'reconfigure', '-i', $interface, ],
+ path => [ '/bin', '/usr/bin', ],
+ refreshonly => true,
}
}