summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-03-07 15:36:04 +0000
committermh <mh@immerda.ch>2009-03-07 15:36:04 +0000
commitbcc2f12b4dd1cf7f77a7a6957914155bf6b5414f (patch)
tree02d10890e5e0f25c2f99b810b826c76091e0fb7f /manifests
parentd994e591198664b35fbc7f40e01f412fc2bc05d2 (diff)
move git cloning stuff to webhosting
Diffstat (limited to 'manifests')
-rw-r--r--manifests/defines/vhost_varieties.pp11
1 files changed, 0 insertions, 11 deletions
diff --git a/manifests/defines/vhost_varieties.pp b/manifests/defines/vhost_varieties.pp
index 93bb3ab..efe1ca8 100644
--- a/manifests/defines/vhost_varieties.pp
+++ b/manifests/defines/vhost_varieties.pp
@@ -207,15 +207,6 @@ define apache::vhost::php::joomla(
}
$documentroot = "${real_path}/www"
- # create webdir
- # for the cloning, $documentroot needs to be absent
- git::clone{"git_clone_$name":
- ensure => $ensure,
- git_repo => "git://git.immerda.ch/ijoomla.git",
- projectroot => $documentroot,
- cloneddir_user => $documentroot_owner,
- cloneddir_group => $documentroot_group
- }
# create and/or put correct permissions
apache::vhost::webdir{$name:
ensure => $ensure,
@@ -225,7 +216,6 @@ define apache::vhost::php::joomla(
documentroot_owner => $documentroot_owner,
documentroot_group => $documentroot_group,
documentroot_mode => $documentroot_mode,
- require => Git::Clone["git_clone_$name"],
}
case $ensure {
@@ -247,7 +237,6 @@ define apache::vhost::php::joomla(
"$documentroot/administrator/cache" ]:
owner => $documentroot_owner,
group => $documentroot_group,
- require => Git::Clone["git_clone_$name"],
}
}
}