-1

环境 :

虚拟化软件:VMware Workstation 12 Player

访客机器:Red Hat 6.4

主机:Windows 7 Professional Service Pack 1

问题 :

我试图在我的虚拟机启动时自动执行 svn update。我像这样编辑了 rc.local 文件:

#!/bin/sh -e
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't 
# want to do the full Sys V style init stuff.

sleep 10

svn update path/to/repository

exit 0

但是这样虚拟机将无法启动,它会继续加载(如果我删除 svn 命令行,没有问题)。如果我尝试关闭或重新启动来宾,我们可以看到:

客机窗口

所以这意味着 svn 命令已执行但它没有工作。我已经尝试过编写“svn update --username user --password xxx”,但结果相同。如何让 svn 命令运行?

4

1 回答 1

0

如果您在/etc/init.d/svnserve中创建文件怎么办

#!/bin/bash 
### BEGIN INIT INFO 
# Provides:          svnserve 
# Required-Start:    $local_fs $remote_fs $network $syslog 
# Required-Stop:     $local_fs $remote_fs $network $syslog 
# Default-Start:     2 3 4 5 
# Default-Stop:      0 1 6 
# X-Interactive:     true 
# Short-Description: Start/stop svnserve 
### END INIT INFO 

svnserve -d -r /PATH/TO/YOUR/REPOSITORY

使其可执行:

chmod u+x /etc/init.d/svnserve

创建从运行级别到脚本的链接:

 update-rc.d svnserve 

然后检查链接是否正确创建

find /etc/ -name '*svnserve*'

此致

西西

于 2016-03-08T13:01:49.600 回答