apache-storm: fix absolute paths in INSTALL/REMOVE

This commit is contained in:
Michael Gehring 2017-07-13 09:05:36 +00:00
parent b6e099991a
commit e963126232
2 changed files with 3 additions and 3 deletions

View File

@ -3,8 +3,8 @@ case "$ACTION" in
post)
if [ "$UPDATE" != "yes" ]; then
# actions to execute if package is being installed.
mkdir -p /var/log/apache-storm
chown -R storm:storm /var/lib/apache-storm /var/log/apache-storm
mkdir -p var/log/apache-storm
chown -R storm:storm var/lib/apache-storm var/log/apache-storm
fi
;;
esac

View File

@ -1,7 +1,7 @@
# Template file for 'apache-storm'
pkgname=apache-storm
version=0.9.4
revision=2
revision=3
only_for_archs="i686 x86_64"
depends="virtual?java-runtime python"
short_desc="Distributed realtime computation system"