我创建了一个自定义Amazon AMI(Fedora)运行一些脚本然后关闭。
AMI的问题在于,如果我的代码发生了变化,AMI实例必须有一种方法在执行之前获取最新的脚本。
我写了一个shell脚本&把它放在/etc/init.d/nt_startup
为了使代码保持最新,我在代码库中执行git pull
shell脚本,然后执行脚本。
问题是,实例启动时git pull
似乎没有运行,但python脚本运行得很好。不知道我错过了什么......这是启动脚本:
#!/bin/bash
#
# ec2 Startup script for EC2 machines
#
# chkconfig: 345 99 02
# description: Script used to issue startup and shutdown commands.
#
if [ "$1" = "start" ]; then
/usr/scripts/code/git_latest
python /usr/scripts/code/process.py
exit
fi
if [ "$1" = "stop" ]; then
#nothing
exit
fi
/usr/scripts/code/git_latest
shell脚本如下所示:
#pulls in the latest code from the repository
cd /usr/scripts/code
sudo git pull
它应该是最新的process.py
脚本。
奇怪的是,如果我ssh到我的实例并手动执行启动脚本(/etc/init.d/nt_startup "start"
),git脚本就可以正常工作。
我错过了什么吗?
答案 0 :(得分:3)
“启动ntstartup:sudo:抱歉,你必须有一个tty来运行sudo”
显然Fedora会锁定非tty sudo命令。
快速搜索导致了解决方案:
希望这对遇到此问题的其他人有所帮助。
答案 1 :(得分:0)
您必须在/etc/rc?.d中添加启动链接。您可以使用chkconfig(8)或ntsysv(8)来帮助您管理这些目录。