From fc3f30a2b73c1fb3afdae589b48fa5a8edf7eb0b Mon Sep 17 00:00:00 2001 From: root Date: Mon, 23 May 2022 09:41:22 -0400 Subject: [PATCH] Add package libtirpc install. Fix relationship ordering. --- manifests/init.pp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/manifests/init.pp b/manifests/init.pp index 92b47ad..ee62208 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -35,6 +35,15 @@ fail("Specified interfaces do not exist on host: ${bad_ifaces}") } + # Install the libtirpc package. + package {'libtirpc': + ensure => installed, + before => [ + File_line['netconfig-udp6'], + File_line['netconfig-tcp6'], + ] + } + # Only runs after notify exec { 'sysctl -p': command => 'cat /etc/sysctl.d/*.conf | sysctl -p -',