Skip to content
Snippets Groups Projects
Commit b95fa403 authored by kohleman's avatar kohleman
Browse files

initial check in

SVN: 13075
parent fa87feb9
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# saves the auth and usage logs of openBIS
export TOMCAT_LOGS=~/sprint/openBIS-server/apache-tomcat/logs
export RSYNC=/usr/bin/rsync
export DESTINATION=/local0/home/openbis/tomcat_logs
[ -d $DESTINATION ] || mkdir -p $DESTINATION
$RSYNC -av $TOMCAT_LOGS/*auth* $DESTINATION
$RSYNC -av $TOMCAT_LOGS/*usage* $DESTINATION
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment