Bump version and split common libraries into separate package

This commit is contained in:
2018-09-12 12:09:52 -04:00
parent f29ba2f458
commit b6c7153401
12 changed files with 33 additions and 16 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
pvc (0.3-1) unstable; urgency=medium
* Code and package reorganization pending additional daemons
-- Joshua Boniface <joshua@boniface.me> Wed, 12 Sep 2018 12:08:28 -0400
pvc (0.2-1) unstable; urgency=medium
* Minor version bump with stability fixes

11
debian/control vendored
View File

@ -6,9 +6,18 @@ Standards-Version: 3.9.8
Homepage: https://www.boniface.me
X-Python3-Version: >= 3.2
Package: pvc-daemon-common
Architecture: all
Depends: python3-kazoo, python3-psutil, python3-apscheduler
Suggests: pvc-virtualization-daemon, pvc-client
Description: Parallel Virtual Cluster common daemon libraries (Python 3)
The Parallel Virtual Cluster provides a management solution for QEMU/KVM virtual clusters.
.
This package installs the common daemon libraries
Package: pvc-virtualization-daemon
Architecture: all
Depends: python3-kazoo, python3-libvirt, python3-psutil, python3-apscheduler, ipmitool, libvirt-daemon-system
Depends: pvc-daemon-common, python3-libvirt, ipmitool, libvirt-daemon-system
Suggests: pvc-client
Description: Parallel Virtual Cluster virtualization daemon (Python 3)
The Parallel Virtual Cluster provides a management solution for QEMU/KVM virtual clusters,

1
debian/pvc-daemon-common.install vendored Normal file
View File

@ -0,0 +1 @@
daemon-common/lib usr/share/pvc

View File

@ -1,6 +1,6 @@
#!/bin/sh
# Enable the servive
systemctl enable /lib/systemd/system/pvcd.service
systemctl enable /lib/systemd/system/pvcvd.service
echo "The PVC daemon has not been started. Create a config file at /etc/pvc/pvcd.conf then start it."
echo "The PVC virtualization daemon has not been started. Create a config file at /etc/pvc/pvcvd.conf then start it."

View File

@ -1,5 +1,5 @@
#!/bin/sh
# Disable the service
systemctl disable pvcd.service
systemctl disable pvcvd.service