
Previously there were 4 python scripts being installed into /usr/{local/}bin/ which contained the extension *.py. There was also a developers script called barbican.sh to create a developer's environment. This change switches away from installing them as scripts, preferring to use pbr's console_scripts entry point. This means that the scripts were moved to be part of a 'cmd' module within the barbican module. The barbican.sh script is also no longer installed as it seems inappropriate to install this on consumers machines. A few cosmetic changes were added to achieve pep8. Change-Id: I452b56535ec18228060370be899af2a63d138472 Closes-Bug: 1454587 Signed-off-by: Dave Walker (Daviey) <email@daviey.com>
19 lines
663 B
Python
19 lines
663 B
Python
# Copyright 2010-2015 OpenStack LLC.
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
"""
|
|
Barbican cmd module
|
|
"""
|