This commit is contained in:
ahmadbilalkhalid 2019-09-08 20:58:33 +05:00
parent 7edb5d3958
commit c0c2b90919
5 changed files with 5 additions and 10 deletions

View File

@ -28,8 +28,7 @@ def setup(path, auth_name, auth_seed, auth_realm,
# Clone main repo
sp.check_output(['git', 'clone',
f'https://code.ungleich.ch/ungleich-public/{repo_name}.git'
'-b', 'wip'])
f'https://code.ungleich.ch/ungleich-public/{repo_name}.git'])
# Create .env file
with open(os.path.join(repo_name, ".env"), "w") as f:

View File

@ -21,8 +21,7 @@ def setup(path, base_dir, file_prefix, etcd_url):
# Clone main repository
sp.check_output(['git', 'clone',
f'https://code.ungleich.ch/ungleich-public/{repo_name}.git'
'-b', 'wip'])
f'https://code.ungleich.ch/ungleich-public/{repo_name}.git'])
# Create .env file
with open(os.path.join(repo_name, ".env"), "w") as f:

View File

@ -25,8 +25,7 @@ def setup(path, ssh_username, ssh_key_path, ssh_key_pass, etcd_url, without_ceph
# Clone main repo
sp.check_output(['git', 'clone',
f'https://code.ungleich.ch/ungleich-public/{repo_name}.git'
'-b', 'wip'])
f'https://code.ungleich.ch/ungleich-public/{repo_name}.git'])
# Create .env file
with open(os.path.join(repo_name, ".env"), "w") as f:

View File

@ -21,8 +21,7 @@ def setup(path, base_dir, etcd_url, without_ceph):
# Clone main repo
sp.check_output(['git', 'clone',
f'https://code.ungleich.ch/ungleich-public/{repo_name}.git'
'-b', 'wip'])
f'https://code.ungleich.ch/ungleich-public/{repo_name}.git'])
# Create .env file
with open(os.path.join(repo_name, ".env"), "w") as f:

View File

@ -24,8 +24,7 @@ def setup(path, vm_prefix, host_prefix, request_prefix, etcd_url):
# Clone main repo
sp.check_output(['git', 'clone',
f'https://code.ungleich.ch/ungleich-public/{repo_name}.git'
'-b', 'wip'])
f'https://code.ungleich.ch/ungleich-public/{repo_name}.git'])
# Create .env file
with open(os.path.join(repo_name, ".env"), "w") as f: