Changeset 4430
- Timestamp:
- Mar 6, 2013, 11:58:41 AM (10 years ago)
- Location:
- trunk/client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/ftpd/proteios_ftp_server.sh.in
r4423 r4430 8 8 MEMORY=64M 9 9 temp_dir=__TEMP_FILES_DIR__ 10 tomcat_user=__TOMCAT_USER__ 10 11 11 12 # temp_dir validataion … … 81 82 case "$1" in 82 83 start) 83 su - tomcat-c "nohup java -server -Xmx$MEMORY -cp $CLASSPATH se.lu.thep.coreftpd.ProteiosFTPServerControl -t\"$temp_dir\" -start $PORT&"84 su - $tomcat_user -c "nohup java -server -Xmx$MEMORY -cp $CLASSPATH se.lu.thep.coreftpd.ProteiosFTPServerControl -t\"$temp_dir\" -start $PORT&" 84 85 echo $CLASSPATH 85 86 ;; 86 87 stop) 87 su - tomcat-c "nohup java -server -Xmx$MEMORY -cp $CLASSPATH se.lu.thep.coreftpd.ProteiosFTPServerControl -t\"$temp_dir\" -stop $PORT&"88 su - $tomcat_user -c "nohup java -server -Xmx$MEMORY -cp $CLASSPATH se.lu.thep.coreftpd.ProteiosFTPServerControl -t\"$temp_dir\" -stop $PORT&" 88 89 ;; 89 90 restart) -
trunk/client/servlet/www/WEB-INF/init.sh
r4387 r4430 119 119 __CATALINA_BASE__="$CATALINA_BASE" \ 120 120 __FTP_CONTROL_PORT__=$FTP_CONTROL_PORT \ 121 __TEMP_FILES_DIR__=$TEMP_FILES_DIR 121 __TEMP_FILES_DIR__=$TEMP_FILES_DIR \ 122 __TOMCAT_USER__=$TOMCAT_USER 122 123 123 124 # End configuration replacements
Note: See TracChangeset
for help on using the changeset viewer.