mirror of
https://github.com/archlinux/aur.git
synced 2026-01-27 20:28:31 +01:00
13 lines
220 B
Bash
13 lines
220 B
Bash
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
if [ "${USER-}" != gerrit ]; then
|
|
echo >&2 "please run $0 as user gerrit"
|
|
exit 1
|
|
fi
|
|
|
|
GERRIT_SITE=/var/lib/gerrit
|
|
export GERRIT_SITE
|
|
|
|
exec /usr/bin/java -jar /usr/share/java/gerrit/gerrit.war "$@"
|