You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by jo...@apache.org on 2014/01/06 16:18:29 UTC

[39/50] git commit: [#5424] remove unused scm dirs from vagrant config

[#5424] remove unused scm dirs from vagrant config


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/85c1c7c6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/85c1c7c6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/85c1c7c6

Branch: refs/heads/cj/6992
Commit: 85c1c7c6e630364fceb097827621f5a68333b988
Parents: b48aac4
Author: Dave Brondsema <db...@slashdotmedia.com>
Authored: Fri Dec 13 17:27:23 2013 -0500
Committer: Tim Van Steenburgh <tv...@gmail.com>
Committed: Thu Jan 2 20:22:35 2014 +0000

----------------------------------------------------------------------
 vagrant/manifests/ubuntu-1204-server-amd64.pp | 31 ----------------------
 1 file changed, 31 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/85c1c7c6/vagrant/manifests/ubuntu-1204-server-amd64.pp
----------------------------------------------------------------------
diff --git a/vagrant/manifests/ubuntu-1204-server-amd64.pp b/vagrant/manifests/ubuntu-1204-server-amd64.pp
index ead0205..b93456e 100644
--- a/vagrant/manifests/ubuntu-1204-server-amd64.pp
+++ b/vagrant/manifests/ubuntu-1204-server-amd64.pp
@@ -115,40 +115,9 @@ file { '/home/vagrant/env-allura/lib/python2.7/site-packages/pysvn':
 }
 
 # create SCM repo dirs
-file { [ "/home/vagrant/scm", "/home/vagrant/scm/git", "/home/vagrant/scm/hg", "/home/vagrant/scm/svn" ]:
-  ensure => "directory",
-  owner => "vagrant",
-  group => "vagrant",
-  mode   => 777,
-}
-
-# create symlinks to repo dirs
-file { '/git':
-  ensure => "link",
-  target => "/home/vagrant/scm/git",
-  owner => "vagrant",
-  group => "vagrant",
-}
-
-file { '/hg':
-  ensure => "link",
-  target => "/home/vagrant/scm/hg",
-  owner => "vagrant",
-  group => "vagrant",
-}
-
-file { '/svn':
-  ensure => "link",
-  target => "/home/vagrant/scm/svn",
-  owner => "vagrant",
-  group => "vagrant",
-}
-
-# create SCM repo dirs
 file { [ "/srv/git", "/srv/hg", "/srv/svn" ]:
   ensure => "directory",
   owner => "vagrant",
   group => "vagrant",
   mode   => 770,
 }
-