Changes the qpid package that gets installed on Fedora

Changes the qpid package that will be installed on Fedora when
running stack.sh. The original package (qpid-cpp-server) was
split up into qpid-cpp-server and qpid-cpp-server-daemon.
systemd unit files were moved into the second package and
if only the first package is installed, qpid service  fails
to start.

Change-Id: Ia7cae795d7e456f0e21e0bedaee583a9e8b35f2d
This commit is contained in:
Nikola Dipanov 2012-09-08 18:36:35 +02:00
parent 6a1c849773
commit 20df2a839d
3 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ python-sqlalchemy
python-suds
python-tempita
rabbitmq-server # NOPRIME
qpid-cpp-server # NOPRIME
qpid-cpp-server-daemon # NOPRIME
sqlite
sudo
vconfig

View File

@ -17,7 +17,7 @@ python-routes
python-sqlalchemy
python-suds
rabbitmq-server # NOPRIME
qpid-cpp-server # NOPRIME
qpid-cpp-server-daemon # NOPRIME
sqlite
sudo
vconfig

View File

@ -668,7 +668,7 @@ if is_service_enabled rabbit; then
rm -f "$tfile"
elif is_service_enabled qpid; then
if [[ "$os_PACKAGE" = "rpm" ]]; then
install_package qpid-cpp-server
install_package qpid-cpp-server-daemon
else
install_package qpidd
fi