Browse Source

Enable the daily log for the Ubuntu and CentOS services (issue-348)

tags/v1.5.0
James Moger 10 years ago
parent
commit
eb9318ef57

+ 2
- 1
releases.moxie View File

- Fix closing ticket on push by parsing commit messages for closes|fixes (issue-404) - Fix closing ticket on push by parsing commit messages for closes|fixes (issue-404)
- Ensure the Lucene ticket index is updated on repository deletion. - Ensure the Lucene ticket index is updated on repository deletion.
changes: changes:
- Option to allow LDAP users to directly authenticate without performing LDAP searches (pr-162))
- Specify the --dailyLogFile option for the Ubuntu and CentOS service scripts (issue-348)
- Option to allow LDAP users to directly authenticate without performing LDAP searches (pr-162)
- Replace JCommander with args4j to be consistent with other tools (ticket-28) - Replace JCommander with args4j to be consistent with other tools (ticket-28)
additions: additions:
- Added a French translation (pr-163) - Added a French translation (pr-163)

+ 1
- 1
src/main/distrib/linux/service-centos.sh View File

then then
echo $"Starting gitblit server" echo $"Starting gitblit server"
cd $GITBLIT_PATH cd $GITBLIT_PATH
$JAVA $GITBLIT_PATH/gitblit.jar --httpsPort $GITBLIT_HTTPS_PORT --httpPort $GITBLIT_HTTP_PORT --baseFolder $GITBLIT_BASE_FOLDER > $GITBLIT_LOG 2>&1 &
$JAVA $GITBLIT_PATH/gitblit.jar --httpsPort $GITBLIT_HTTPS_PORT --httpPort $GITBLIT_HTTP_PORT --baseFolder $GITBLIT_BASE_FOLDER --dailyLogFile &
echo "." echo "."
exit $RETVAL exit $RETVAL
fi fi

+ 1
- 1
src/main/distrib/linux/service-ubuntu.sh View File

GITBLIT_BASE_FOLDER=/opt/gitblit/data GITBLIT_BASE_FOLDER=/opt/gitblit/data
GITBLIT_USER="gitblit" GITBLIT_USER="gitblit"
source ${GITBLIT_PATH}/java-proxy-config.sh source ${GITBLIT_PATH}/java-proxy-config.sh
ARGS="-server -Xmx1024M ${JAVA_PROXY_CONFIG} -Djava.awt.headless=true -jar gitblit.jar --baseFolder $GITBLIT_BASE_FOLDER"
ARGS="-server -Xmx1024M ${JAVA_PROXY_CONFIG} -Djava.awt.headless=true -jar gitblit.jar --baseFolder $GITBLIT_BASE_FOLDER --dailyLogFile"


RETVAL=0 RETVAL=0



Loading…
Cancel
Save