mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-10 10:23:25 +01:00
13 lines
239 B
Bash
Executable file
13 lines
239 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
|
|
MACHINE_TYPE=`getconf LONG_BIT`
|
|
if [ "${MACHINE_TYPE}" = "64" ]; then
|
|
JSW=/opt/sonar/bin/linux-x86-64/sonar.sh
|
|
else
|
|
JSW=/opt/sonar/bin/linux-x86-32/sonar.sh
|
|
fi
|
|
|
|
echo "Launching startup scripts ${JWS}"
|
|
|
|
exec ${JSW} console
|