2014-09-08 Sancho Lerena <slerena@gmail.com>

* pandora_server_installer: Fixed problems on linux due
        bad link paths from /usr/local/bin -> /usr/bin
This commit is contained in:
Sancho Lerena 2014-09-08 12:49:15 +02:00
parent a9bb9f84ea
commit e6dd2ec15d
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2014-09-08 Sancho Lerena <slerena@gmail.com>
* pandora_server_installer: Fixed problems on linux due
bad link paths from /usr/local/bin -> /usr/bin
2014-09-06 Junichi Satoh <junichi@rworks.jp> 2014-09-06 Junichi Satoh <junichi@rworks.jp>
* lib/PandoraFMS/Core.pm: Fixed that unknown modules are never * lib/PandoraFMS/Core.pm: Fixed that unknown modules are never

View File

@ -247,8 +247,9 @@ perl-TimeDate perl-XML-Simple perl-XML-Twig perl-libwww-perl mysql-client"
fi fi
if [ "$DISTRO" != "FreeBSD" ] && [ "$DISTRO" != "NetBSD" ] if [ "$DISTRO" != "FreeBSD" ] && [ "$DISTRO" != "NetBSD" ]
then then
ln -s /usr/local/bin/pandora_server $DESTDIR$PREFIX ln -s /usr/local/bin/pandora_server $DESTDIR$PREFIX/bin
ln -s /usr/local/bin/pandora_exec $DESTDIR$PREFIX ln -s /usr/local/bin/pandora_exec $DESTDIR$PREFIX/bin
ln -s /usr/local/bin/tentacle_server $DESTDIR$PREFIX/bin
fi fi
fi fi