summaryrefslogtreecommitdiff
path: root/manifests/file
diff options
context:
space:
mode:
authorAndreas <andreas@immerda.ch>2009-11-18 16:57:17 +0100
committerAndreas <andreas@immerda.ch>2009-11-18 16:57:17 +0100
commit9e1422ebd6728856fb5ab5cbc0fc5b88406ab9c1 (patch)
tree252cfe7f137a5386b51077af67a26d5676611442 /manifests/file
parentf51d0e0184e76cffb8220858c6735c50de3e19b1 (diff)
link is not apache specific
Diffstat (limited to 'manifests/file')
-rw-r--r--manifests/file/link.pp12
1 files changed, 0 insertions, 12 deletions
diff --git a/manifests/file/link.pp b/manifests/file/link.pp
deleted file mode 100644
index 206bce5..0000000
--- a/manifests/file/link.pp
+++ /dev/null
@@ -1,12 +0,0 @@
-define apache::file::link(
- $target = 'absent'
-) {
- if ($target != 'absent') {
- file { "$name":
- ensure => link,
- target => "${target}"
- }
- }
-}
-
-