文件名称:resin 启动脚本
文件大小:10KB
文件格式:CONF
更新时间:2011-12-10 02:37:56
resin
#!/bin/sh SROOT=/opt/resin(注意resin的目录) RESIN_OWNER=resin(注意resin的用户) case "$1" in start) su - $RESIN_OWNER -c "$SROOT/bin/httpd.sh start" ;; stop) su - $RESIN_OWNER -c "$SROOT/bin/httpd.sh stop" ;; *) echo 'Usage:resin {start|stop}';; esac exit 0