From: intrigeri Date: Fri, 25 Feb 2011 23:27:43 +0000 (+0100) Subject: Remove append_if_no_such_line to sync with shared module. X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=ab9bc25704ac0c560cc8f11ae6ef67402cde3830;p=puppet-common.git Remove append_if_no_such_line to sync with shared module. --- diff --git a/manifests/defines/append_if_no_such_line.pp b/manifests/defines/append_if_no_such_line.pp deleted file mode 100644 index 6ccf9f9..0000000 --- a/manifests/defines/append_if_no_such_line.pp +++ /dev/null @@ -1,14 +0,0 @@ -# -# This define is only for "CFEngine compatability". It is only a light -# wrapper around the "line" define, which is equally dangerous, but at -# least named according to a proper resource model. -# -define append_if_no_such_line($file, $line) { - line { - $name: - ensure => present, - file => $file, - line => $line; - } -} -