Don't auto-gen the demo project update on preload

This commit is contained in:
Matthew Jones
2016-06-22 14:49:09 -04:00
parent 4ddaf4568b
commit 8d67d3a6fc
2 changed files with 9 additions and 7 deletions

View File

@@ -23,12 +23,13 @@ class Command(BaseCommand):
superuser = None
with impersonate(superuser):
o = Organization.objects.create(name='Default')
p = Project.objects.create(name='Demo Project',
scm_type='git',
scm_url='https://github.com/ansible/ansible-tower-samples',
scm_update_on_launch=True,
scm_update_cache_timeout=0,
organization=o)
p = Project(name='Demo Project',
scm_type='git',
scm_url='https://github.com/ansible/ansible-tower-samples',
scm_update_on_launch=True,
scm_update_cache_timeout=0,
organization=o)
p.save(skip_update=True)
c = Credential.objects.create(name='Demo Credential',
username=superuser.username,
created_by=superuser)