环境:
虚拟化软件:VMware Workstation 12 Player
访客机器:Red Hat 6.4
主机:Windows 7 Professional Service Pack 1
问题:
我正在尝试在启动虚拟机时自动执行svn更新。我像这样编辑了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命令?
答案 0 :(得分: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*'
祝你好运
XSI的