diff options
author | Stuart Mackie <wsmackie@juniper.net> | 2017-03-23 06:19:54 -0700 |
---|---|---|
committer | Stuart Mackie <wsmackie@juniper.net> | 2017-03-23 06:19:54 -0700 |
commit | 88df88a19674ccc0017836941b8ee32eaadf19fb (patch) | |
tree | f930c90f75846ec8d8e33cf27325ff8fafc85d5c /charms/trusty/cassandra/lib/juju-deployer-wrapper.py | |
parent | 9f50a40437477432a21b326b15c343ca6b8fe516 (diff) |
Deleted charms with wrong license. Will source them differently in future.
Change-Id: I0fc99ea03c6b6ca4701e63793cb2be60e56c7588
Signed-off-by: Stuart Mackie <wsmackie@juniper.net>
Diffstat (limited to 'charms/trusty/cassandra/lib/juju-deployer-wrapper.py')
-rwxr-xr-x | charms/trusty/cassandra/lib/juju-deployer-wrapper.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/charms/trusty/cassandra/lib/juju-deployer-wrapper.py b/charms/trusty/cassandra/lib/juju-deployer-wrapper.py deleted file mode 100755 index bf792f2..0000000 --- a/charms/trusty/cassandra/lib/juju-deployer-wrapper.py +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/python - -import subprocess -import sys - -# Strip the -W option, as its noise messes with test output. -args = list(sys.argv[1:]) -if '-W' in args: - args.remove('-W') -cmd = ['juju-deployer'] + args -try: - subprocess.check_output(cmd, stderr=subprocess.STDOUT) -except subprocess.CalledProcessError as x: - sys.stderr.write(x.output) - sys.exit(x.returncode) |