~ajkavanagh/openstack-mojo-specs/remove-cinder-from-vrrp-ha

« back to all changes in this revision

Viewing changes to helper/setup/upgrade_services.py

  • Committer: Ryan Beisner
  • Date: 2017-08-30 17:25:03 UTC
  • Revision ID: ryan.beisner@canonical.com-20170830172503-qd6ksa1morqk9ds1
Clean lint, remove deprecated series, initial Pike enablement

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
 
1
#!/usr/bin/env python
2
2
import sys
3
3
import utils.mojo_utils as mojo_utils
4
4
import logging
14
14
    for service in services:
15
15
        mojo_utils.upgrade_service(service)
16
16
 
 
17
 
17
18
if __name__ == "__main__":
18
19
    sys.exit(main(sys.argv))