Fix syntax error, clone URL for deploy.backup_app()
This commit is contained in:
parent
cbf93624e0
commit
5b985fb803
|
@ -100,7 +100,7 @@ def deploy_backup_app(c, deploy, envname, mkvirtualenv=True, user='rattail',
|
|||
|
||||
# rattail
|
||||
if not exists(c, os.path.join(envpath, 'src/rattail')):
|
||||
c.sudo('git clone https://rattailproject.org/git/rattail.git {}/src/rattail'.format(envpath), user=user)
|
||||
c.sudo('git clone https://kallithea.rattailproject.org/rattail-project/rattail {}/src/rattail'.format(envpath), user=user)
|
||||
c.sudo("bash -l -c 'workon {} && cdvirtualenv && bin/pip install --editable src/rattail'".format(envname), user=user)
|
||||
deploy_generic(c, 'backup/git-exclude', os.path.join(envpath, 'src/rattail/.git/info/exclude'), use_sudo=True, owner=user)
|
||||
|
||||
|
@ -116,7 +116,7 @@ def deploy_backup_app(c, deploy, envname, mkvirtualenv=True, user='rattail',
|
|||
c.sudo("bash -c 'cd {} && bin/rattail -c app/rattail.conf make-config -T quiet -O app/'".format(envpath),
|
||||
user=user)
|
||||
if not exists(c, os.path.join(envpath, 'app', 'silent.conf')):
|
||||
c.sudo("bash -c 'cd {} && bin/rattail -c app/rattail.conf make-config -T silent -O app/".format(envpath),
|
||||
c.sudo("bash -c 'cd {} && bin/rattail -c app/rattail.conf make-config -T silent -O app/'".format(envpath),
|
||||
user=user)
|
||||
|
||||
# rattail-backup script
|
||||
|
|
Loading…
Reference in a new issue