diff options
author | intrigeri <intrigeri@boum.org> | 2011-02-26 00:27:43 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2011-02-26 00:27:43 +0100 |
commit | ab9bc25704ac0c560cc8f11ae6ef67402cde3830 (patch) | |
tree | 2d020b6daa11645a5ccb4ffb1414374a15536eb5 /manifests | |
parent | 0b709ed5a7acb5964970e2f49153bd47fc9a7301 (diff) | |
download | puppet-common-ab9bc25704ac0c560cc8f11ae6ef67402cde3830.tar.gz puppet-common-ab9bc25704ac0c560cc8f11ae6ef67402cde3830.tar.bz2 |
Remove append_if_no_such_line to sync with shared module.
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/defines/append_if_no_such_line.pp | 14 |
1 files changed, 0 insertions, 14 deletions
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; - } -} - |