Commit 17972215 authored by Thibault VINCENT's avatar Thibault VINCENT
Browse files

release v6 with init script and bug fixes

parent 6c0841e4
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ try:
except ImportError:
    DAEMONIZE = False

__VERSION__ = 5
__VERSION__ = 6

DEFAULT_CONFIG_FILE = '/etc/cc-node.conf'
DEFAULT_PID_FILE = '/var/run/cc-node.pid'
@@ -114,8 +114,6 @@ if __name__ == '__main__':
                  help='run as daemon and write pid file')
    op.add_option('-p', '--pid-file', default=DEFAULT_PID_FILE,
                  help='pid file (default: %default)')
    #op.add_option('-s', '--skip-hypervisor', default=False, action="store_true",
    #              help='do not connect to hypervisors (default: %default)')
    
    cliopts, args = op.parse_args()
    
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ Standards-Version: 3.9.1

Package: cc-node
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}, python-sjrpc ( >= 5-1 ), python-psutil
Depends: ${misc:Depends}, ${python:Depends}, python-sjrpc ( >= 6-1 ), python-psutil
Recommends: python-libvirt
XB-Python-Version: ${python:Versions}
Description: CloudControl node
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ ldesc = open(os.path.join(os.path.dirname(__file__), 'README')).read()

setup(
    name='cc-node',
    version='5',
    version='6',
    description='Cloud Control Node',
    long_description=ldesc,
    author='Thibault VINCENT',