我尝试在AWS代码部署中运行AfterInstall脚本,但它是从/ opt / codedeploy-agent / dir而不是我的app目录运行。
这就是appspec.yml文件的样子:
version: 0.0
os: linux
files:
- source: /
destination: /tmp/epub
hooks:
AfterInstall:
- location: server/install-packages.sh
runas: root
你可以看到它是一个基本的例子。
现在,bash脚本如下所示:
#!/bin/bash
npm install
我只想安装npm,那就是它。
不幸的是我收到了错误:
LifecycleEvent - AfterInstall
Script - server/install-packages.sh
[stderr]npm ERR! install Couldn't read dependencies
[stderr]npm ERR! Linux 3.13.0-48-generic
[stderr]npm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "install"
[stderr]npm ERR! node v4.2.1
[stderr]npm ERR! npm v2.14.7
[stderr]npm ERR! path /opt/codedeploy-agent/package.json
[stderr]npm ERR! code ENOPACKAGEJSON
[stderr]npm ERR! errno -2
[stderr]npm ERR! syscall open
[stderr]
[stderr]npm ERR! package.json ENOENT: no such file or directory, open '/opt/codedeploy-agent/package.json'
[stderr]npm ERR! package.json This is most likely not a problem with npm itself.
[stderr]npm ERR! package.json npm can't find a package.json file in your current directory.
[stderr]
[stderr]npm ERR! Please include the following file with any support request:
[stderr]npm ERR! /opt/codedeploy-agent/npm-debug.log
我正在尝试不同的appspec.yml配置,例如添加runas或添加" /"在位置路径的开头。它一直试图从/ opt / codedeoploy-agent /目录运行。
绝望之下,我已经设定了剧本的绝对路径,但后来我得到了:
Script does not exist at specified location: /tmp/epub/server/install-packages.sh
因为我根据文档做了所有事情,所以真的很烦人,但可能我错过了非常小的东西!
谢谢
答案 0 :(得分:22)
确定,
所以我发现,codedeoloy-agent正在从部署实例上的代理创建的临时目录运行AfterInstall(可能还有所有其他步骤),因此在我的情况下我必须修改bash脚本通过cd到正确的目录:
#!/bin/bash
cd /tmp/epub/server/
npm install