From 4008a12d5901f1f852fc557fe568d21f037466f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20M=E4kinen?= Date: Wed, 13 Jun 2012 22:57:45 +0300 Subject: [PATCH] Fix static NFS mounts on Fedora during boot. --- nfs/manifests/init.pp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nfs/manifests/init.pp b/nfs/manifests/init.pp index da7cf46..dc8f057 100644 --- a/nfs/manifests/init.pp +++ b/nfs/manifests/init.pp @@ -9,6 +9,14 @@ class nfs::client { ensure => installed, } + if $::operatingsystem == "Fedora" { + # https://bugzilla.redhat.com/show_bug.cgi?id=692008 + service { "NetworkManager-wait-online": + ensure => stopped, + enable => true, + } + } + service { "nfslock": name => $operatingsystem ? { "fedora" => "nfs-lock",