如何设置 TeamCity 命令行运行器默认 shell?

如何设置 TeamCity 命令行运行器默认 shell?

init.d我正在通过如下脚本在 Ubuntu 15.10 上启动我的 TeamCity 代理:

#!/bin/sh
### BEGIN INIT INFO
# Provides:          TeamCity Build Agent
# Required-Start:    $remote_fs $syslog
# Required-Stop:     $remote_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Start build agent daemon at boot time
# Description:       Enable service provided by daemon.
### END INIT INFO

USER="myuser"

case "$1" in
  start)
    su - $USER -c "/home/myuser/BuildAgent/bin/agent.sh start"
  ;;
  stop)
    su - $USER -c "/home/myuser/BuildAgent/bin/agent.sh stop"
  ;;
  *)
    echo "usage start/stop"
    exit 1
  ;;
esac

exit 0

该脚本在重启时启动代理,没有任何问题。

但是,我的 TeamCity 构建步骤(特别是命令行运行器)找不到我的可执行文件,而是得到了node: command not found。奇怪的是,如果我从命令行启动代理myuser,则完全相同的构建步骤可以正常工作。

我试图避免#!/bin/bash每次都要在构建脚本前加上前缀。在使用命令行运行器时,有没有办法指定默认 shell?

命令行运行器截图

相关内容