a
This commit is contained in:
parent
a5b8bf988a
commit
7b13c4e382
5 changed files with 5 additions and 5 deletions
|
@ -39,4 +39,4 @@ def setup(path, api_server, name, realm, seed, branch):
|
||||||
install_available(repo_name)
|
install_available(repo_name)
|
||||||
|
|
||||||
# Create virtualenv with site-packages enabled and install all dependencies
|
# Create virtualenv with site-packages enabled and install all dependencies
|
||||||
sp.check_output(['pipenv', 'install','--python', '3'], cwd=repo_name)
|
sp.check_output(['pipenv', 'install'], cwd=repo_name)
|
|
@ -42,7 +42,7 @@ def setup(path, base_dir, file_prefix, etcd_url, branch):
|
||||||
install_available(repo_name)
|
install_available(repo_name)
|
||||||
|
|
||||||
# Create virtualenv with site-packages enabled and install all dependencies
|
# Create virtualenv with site-packages enabled and install all dependencies
|
||||||
sp.check_output(['pipenv', 'install','--python', '3'], cwd=repo_name)
|
sp.check_output(['pipenv', 'install'], cwd=repo_name)
|
||||||
|
|
||||||
|
|
||||||
# Write Crontab entry
|
# Write Crontab entry
|
||||||
|
|
|
@ -47,4 +47,4 @@ def setup(path, ssh_username, ssh_key_path, ssh_key_pass, etcd_url, without_ceph
|
||||||
install_available(repo_name)
|
install_available(repo_name)
|
||||||
|
|
||||||
# Create virtualenv with site-packages enabled and install all dependencies
|
# Create virtualenv with site-packages enabled and install all dependencies
|
||||||
sp.check_output(['pipenv', 'install','--python', '3'], cwd=repo_name)
|
sp.check_output(['pipenv', 'install'], cwd=repo_name)
|
|
@ -41,7 +41,7 @@ def setup(path, base_dir, etcd_url, without_ceph, branch):
|
||||||
|
|
||||||
install_available(repo_name)
|
install_available(repo_name)
|
||||||
|
|
||||||
sp.check_output(['pipenv', 'install', '--python', '3'], cwd=repo_name)
|
sp.check_output(['pipenv', 'install'], cwd=repo_name)
|
||||||
|
|
||||||
# Write Crontab entry
|
# Write Crontab entry
|
||||||
if get_distro_name() == "alpine":
|
if get_distro_name() == "alpine":
|
||||||
|
|
|
@ -47,4 +47,4 @@ def setup(path, vm_prefix, host_prefix, request_prefix, etcd_url, branch):
|
||||||
install_available(repo_name)
|
install_available(repo_name)
|
||||||
|
|
||||||
# Create virtualenv with site-packages enabled and install all dependencies
|
# Create virtualenv with site-packages enabled and install all dependencies
|
||||||
sp.check_output(['pipenv', 'install','--python', '3'], cwd=repo_name)
|
sp.check_output(['pipenv', 'install'], cwd=repo_name)
|
Loading…
Reference in a new issue