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
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ if [[ $STATUS -eq 0 ]]; then
echo -e "Service $PRG is already running."
else
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
}