2010-06-04 Ramon Novoa <rnovoa@artica.es>
* pandora_console.spec: Fixed. Upgrading an RPM broke the installation. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2857 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
482de6014e
commit
9c9759bc6b
|
@ -1,3 +1,7 @@
|
|||
2010-06-04 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* pandora_console.spec: Fixed. Upgrading an RPM broke the installation.
|
||||
|
||||
2010-06-01 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* DEBIAN/prerm: disabled the delete conf file.
|
||||
|
|
|
@ -107,6 +107,12 @@ echo "Don't forget to start Tentacle Server daemon if you want to receive"
|
|||
echo "data using tentacle"
|
||||
|
||||
%preun
|
||||
|
||||
# Upgrading
|
||||
if [ "$1" = "1" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
/etc/init.d/pandora_server stop &>/dev/null
|
||||
/etc/init.d/tentacle_serverd stop &>/dev/null
|
||||
chkconfig --del pandora_server
|
||||
|
|
Loading…
Reference in New Issue