a
This commit is contained in:
parent
2af8bfe671
commit
ec689ab43e
5 changed files with 8 additions and 8 deletions
|
@ -43,8 +43,8 @@ def setup(path, auth_name, auth_seed, auth_realm,
|
|||
f.writelines(content)
|
||||
|
||||
# Clone Common and Etcd Wrapper
|
||||
clone_common()
|
||||
clone_etcd_wrapper()
|
||||
clone_common(path=repo_name)
|
||||
clone_etcd_wrapper(path=repo_name)
|
||||
|
||||
# Copy Etcd Wrapper inside ucloud_common as ucloud_common
|
||||
# also needs etcd wrapper
|
||||
|
|
|
@ -33,7 +33,7 @@ def setup(path, base_dir, file_prefix, etcd_url):
|
|||
f.writelines(content)
|
||||
|
||||
# Clone etcd wrapper
|
||||
clone_etcd_wrapper()
|
||||
clone_etcd_wrapper(path=repo_name)
|
||||
|
||||
# Create virtualenv with site-packages enabled and install all dependencies
|
||||
sp.check_output(['pipenv','--site-packages', '--python', '3'], cwd=repo_name)
|
||||
|
|
|
@ -39,8 +39,8 @@ def setup(path, ssh_username, ssh_key_path, ssh_key_pass, etcd_url, without_ceph
|
|||
f.writelines(content)
|
||||
|
||||
# Clone Common and Etcd Wrapper
|
||||
clone_common()
|
||||
clone_etcd_wrapper()
|
||||
clone_common(path=repo_name)
|
||||
clone_etcd_wrapper(path=repo_name)
|
||||
|
||||
# Copy Etcd Wrapper inside ucloud_common as ucloud_common
|
||||
# also needs etcd wrapper
|
||||
|
|
|
@ -33,7 +33,7 @@ def setup(path, base_dir, etcd_url, without_ceph):
|
|||
f.writelines(content)
|
||||
|
||||
|
||||
clone_etcd_wrapper()
|
||||
clone_etcd_wrapper(path=repo_name)
|
||||
|
||||
# Create virtualenv with site-packages enabled and install all dependencies
|
||||
sp.check_output(['pipenv','--site-packages', '--python', '3'], cwd=repo_name)
|
||||
|
|
|
@ -37,8 +37,8 @@ def setup(path, vm_prefix, host_prefix, request_prefix, etcd_url):
|
|||
f.writelines(content)
|
||||
|
||||
# Clone Common and Etcd Wrapper
|
||||
clone_common()
|
||||
clone_etcd_wrapper()
|
||||
clone_common(path=repo_name)
|
||||
clone_etcd_wrapper(path=repo_name)
|
||||
|
||||
# Copy Etcd Wrapper inside ucloud_common as ucloud_common
|
||||
# also needs etcd wrapper
|
||||
|
|
Loading…
Reference in a new issue