在流浪汉上执行命令

时间:2015-02-01 17:38:28

标签: vagrant upstart

我尝试在与vagrant一​​起安装共享后运行命令。我以前从未写过新手剧本。到目前为止我所拥有的是

start on vagrant-mounted

script
  if [ "$MOUNTPOINT" = "/vagrant" ]
     then
         env CMD="echo $MOUNTPOINT mounted at $(date)"
  elif [ "$MOUNTPOINT" = "/srv/website" ]
     then
         env CMD ="echo execute command"
  fi
end script

exec "$CMD >> /var/log/vup.log"
当然,这不是我想要运行的实际剧本,但我还没有那么远,但结构是我所需要的。我的出发点是article。我有一个不同的版本只是

echo $MOUNTPOINT mounted at `date`>> /var/log/vup.log

该版本确实写入了日志。 尝试使用failed to ask Upstart to check conf file

使用init-checkconf faile

0 个答案:

没有答案