summaryrefslogtreecommitdiff
path: root/extensions/swift-storage-devices-validate.py
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2017-11-26 23:39:48 +0000
committerJavier Jardón <jjardon@gnome.org>2017-12-12 15:58:23 +0000
commit7df7f3b427739ff7d69da2ba218da0124822892c (patch)
tree843c75e9bede53862ab101d6a7bcd1da15a33c55 /extensions/swift-storage-devices-validate.py
parent7aad5150f69da42b84994c353283db5daf8e967f (diff)
downloaddefinitions-7df7f3b427739ff7d69da2ba218da0124822892c.tar.gz
Remove all .morph files and files from the old format
Diffstat (limited to 'extensions/swift-storage-devices-validate.py')
-rwxr-xr-xextensions/swift-storage-devices-validate.py60
1 files changed, 0 insertions, 60 deletions
diff --git a/extensions/swift-storage-devices-validate.py b/extensions/swift-storage-devices-validate.py
deleted file mode 100755
index 57ab23d0..00000000
--- a/extensions/swift-storage-devices-validate.py
+++ /dev/null
@@ -1,60 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-#
-# Copyright © 2015 Codethink Limited
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program. If not, see <http://www.gnu.org/licenses/>.
-#
-# This is used by the openstack-swift.configure extension
-# to validate any provided storage device specifiers
-# under SWIFT_STORAGE_DEVICES
-#
-
-
-'''
- This is used by the swift-storage.configure extension
- to validate any storage device specifiers specified
- in the SWIFT_STORAGE_DEVICES environment variable
-'''
-
-from __future__ import print_function
-
-import yaml
-import sys
-
-EXAMPLE_DEVSPEC = '{device: sdb1, ip: 127.0.0.1, weight: 100}'
-REQUIRED_KEYS = ['ip', 'device', 'weight']
-
-def err(msg):
- print(msg, file=sys.stderr)
- sys.exit(1)
-
-if len(sys.argv) != 2:
- err('usage: %s STRING_TO_BE_VALIDATED' % sys.argv[0])
-
-swift_storage_devices = yaml.load(sys.argv[1])
-
-if not isinstance(swift_storage_devices, list):
- err('Expected list of device specifiers\n'
- 'Example: [%s]' % EXAMPLE_DEVSPEC)
-
-for d in swift_storage_devices:
- if not isinstance(d, dict):
- err("Invalid device specifier: `%s'\n"
- 'Device specifier must be a dictionary\n'
- 'Example: %s' % (d, EXAMPLE_DEVSPEC))
-
- if set(d.keys()) != set(REQUIRED_KEYS):
- err("Invalid device specifier: `%s'\n"
- 'Specifier should contain: %s\n'
- 'Example: %s' % (d, str(REQUIRED_KEYS)[1:-1], EXAMPLE_DEVSPEC))