You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
351 B
13 lines
351 B
import os
|
|
import common
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE',
|
|
'autotest_lib.frontend.settings_lite')
|
|
|
|
from autotest_lib.frontend.afe import readonly_connection
|
|
readonly_connection.set_globally_disabled(True)
|
|
|
|
import django.core.management
|
|
|
|
django.core.management.call_command('syncdb', interactive=False, verbosity=0)
|