aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2011-02-26 00:27:43 +0100
committerintrigeri <intrigeri@boum.org>2011-02-26 00:27:43 +0100
commitab9bc25704ac0c560cc8f11ae6ef67402cde3830 (patch)
tree2d020b6daa11645a5ccb4ffb1414374a15536eb5
parent0b709ed5a7acb5964970e2f49153bd47fc9a7301 (diff)
downloadpuppet-common-ab9bc25704ac0c560cc8f11ae6ef67402cde3830.tar.gz
puppet-common-ab9bc25704ac0c560cc8f11ae6ef67402cde3830.tar.bz2
Remove append_if_no_such_line to sync with shared module.
-rw-r--r--manifests/defines/append_if_no_such_line.pp14
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;
- }
-}
-