~andrewjbeach/juju-ci-tools/make-local-patcher

« back to all changes in this revision

Viewing changes to assess_update_mongo.py

  • Committer: Martin Packman
  • Date: 2016-04-29 00:19:30 UTC
  • mto: This revision was merged to the branch mainline in revision 1389.
  • Revision ID: martin.packman@canonical.com-20160429001930-yoju030ik6lwqf0e
Add clean_maas.py script for releasing machines

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
from deploy_stack import (
11
11
    BootstrapManager,
12
12
)
13
 
from jujucharm import (
14
 
    local_charm_path,
15
 
)
16
13
from remote import remote_from_address
17
14
from utility import (
18
15
    add_basic_testing_arguments,
19
16
    configure_logging,
 
17
    local_charm_path,
20
18
)
21
19
 
22
20