From b3a7b767b998bb2abc1d8fe91eb62f677cdec155 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Wed, 15 Nov 2017 01:34:34 -0500 Subject: [PATCH] Restart openafs-client after dkms package is installed Again, ubuntu-trusty is fine, but xenial seems to be a little different. The openafs-client will start the service, but not fully start because kernel modules are missing. So, in this case, we'll kick the openafs-client service, once dkms package has finished compiling. Change-Id: I2cfcecc03e23ad9e906dbf9a4f058f0984084b37 Signed-off-by: Paul Belanger --- manifests/client.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/manifests/client.pp b/manifests/client.pp index 69170f7..630c4bc 100644 --- a/manifests/client.pp +++ b/manifests/client.pp @@ -112,6 +112,7 @@ class openafs::client ( } package { $openafs_dkms: ensure => present, + notify => Service['openafs-client'], } }