update dependencies and inital db migration

This commit is contained in:
j 2016-02-20 05:36:47 +00:00
parent f060601d40
commit 2ebc58d0c7
1 changed files with 10 additions and 0 deletions

View File

@ -165,6 +165,16 @@ if __name__ == "__main__":
if os.path.exists('.bzr'):
shutil.rmtree('.bzr')
run('git', 'checkout', 'update.py')
if old <= 5389:
run('./bin/pip', 'install', '-r', 'requirements.txt')
run('./pandora/manage.py', 'migrate', '--fake-initial')
service = 'pandora'
print('Please install new init script for "%s" service:' % service)
if os.path.exists('/etc/init'):
print('\tsudo cp %s/etc/init/%s.conf /etc/init/' % (base, service))
if os.path.exists('/lib/systemd/system'):
print('\tsudo cp %s/etc/systemd/%s.service /lib/systemd/system/' % (base, service))
print('\tsudo service %s restart' % service)
else:
if len(sys.argv) == 1:
release = get_release()