
Add a nova cli "nova host-maintenance" to query and enable/disable the host maintenance mode for a specified host. For detail usage, please refer to: "nova help host-maintenance". Change-Id: Ibc3f92521546a82672b1619f7b65416909d92dfc Closes-Bug: 1386026
16 lines
380 B
Python
16 lines
380 B
Python
# Copyright 2014 IBM Corp.
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="hostmaintenance-client",
|
|
version="0.1",
|
|
packages=find_packages(exclude=['*.tests', 'tests',
|
|
'tests.*', '*.tests.*']),
|
|
entry_points={
|
|
'novaclient.extension': [
|
|
'host_maintenance = v1_1.host_maintenance',
|
|
],
|
|
}
|
|
)
|