码迷,mamicode.com
首页 > 系统相关 > 详细

SVN服务器 Linux 开机自动启动代码

时间:2017-11-08 15:57:29      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:svn服务器 linux 开机自动启动代码




  ~ ll /etc/rc.d/rc.local
-rwxr-xr-x 1 root root 810 Oct  9 09:30 /etc/rc.d/rc.local




  ~ cat /etc/rc.d/rc.local
#!/bin/bash
# THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES
#
# It is highly advisable to create own systemd services or udev rules
# to run scripts during boot instead of using this file.
#
# In contrast to previous versions due to parallel execution during boot
# this script will NOT be run after all other services.
#
# Please note that you must run ‘chmod +x /etc/rc.d/rc.local‘ to ensure
# that this script will be executed during boot.

touch /var/lock/subsys/local

#add_S by chunli, for autostart svnserve!
while true
do
    sleep 1
    ps -ef > /tmp/tmp_svnserve
    cat /tmp/tmp_svnserve | grep ‘/usr/bin/svnserve -d‘
    if [ $? -eq 0 ]
    then
        rm -rf /tmp/tmp_svnserve
        exit
    else
        /usr/bin/svnserve -d -r /home/svn/
    fi
done
#add_E by chunli, for autostart svnserve!
  ~


本文出自 “李春利” 博客,转载请与作者联系!

SVN服务器 Linux 开机自动启动代码

标签:svn服务器 linux 开机自动启动代码

原文地址:http://990487026.blog.51cto.com/10133282/1979953

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!