system/apache-cassandra: Fix start option.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Willy Sudiarto Raharjo 2022-02-11 16:27:24 +07:00
parent 5c06b5294f
commit ebf6ec62ef
No known key found for this signature in database
GPG key ID: 3F617144D7238786

View file

@ -35,7 +35,7 @@ if [[ $STATUS -eq 0 ]]; then
echo -e "Service $PRG is already running." echo -e "Service $PRG is already running."
else else
echo -e "Start service $PRG" echo -e "Start service $PRG"
$DIR$PRG -r -p $PID_FILE > /dev/null 2>&1 & $DIR$PRG -R -p $PID_FILE > /dev/null 2>&1 &
fi fi
} }