From 365db34b122ffee37cf7224dd31c9dc48bf084aa Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 3 Mar 2015 15:08:28 -0800 Subject: [PATCH] Force /etc/ansible/library deletion Puppet won't remove directories without force => true being set. Set it to actually get rid of the dir. Change-Id: I3d3486c50d291a14eb5262998234159f1b4668c1 --- manifests/init.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/manifests/init.pp b/manifests/init.pp index a9546b0..eaf42d1 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -44,6 +44,7 @@ class ansible ( file { '/etc/ansible/library': ensure => absent, + force => true, } include logrotate