Remove submodule initialisation as we now use subtrees

Change-Id: I2d61bb3a2c20d8f75cf35572bfebe76788284ecc
Requires: https://github.com/redhat-openstack/openstack-puppet-modules/pull/113
This commit is contained in:
Lukas Bezdicka 2014-10-02 09:20:52 -04:00
parent 35c9d3c392
commit 409b615896
1 changed files with 1 additions and 2 deletions

View File

@ -49,8 +49,7 @@ class InstallModulesCommand(Command):
pass
print 'Cloning %(repo)s to %(destination)s' % locals()
cmd = ('cd %(basedir)s; git clone %(repo)s %(repodir)s; '
'cd %(repodir)s; git checkout %(branch)s; '
'git submodule update --init' % locals())
'cd %(repodir)s; git checkout %(branch)s; ' % locals())
proc = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
out, err = proc.communicate()