Ant构建脚本如何检查root权限



如何使用Ant构建脚本检查root权限?我试着用类似的shell脚本任务来完成它

<shellscript shell="bash">
    if [[ `whoami` != 'root' ]]; then
        echo "You need to be root to install ooplss";
        exit 1
    fi
</shellscript>

但这不会停止脚本的执行。

还有其他想法吗?

shell脚本任务是exec任务的扩展。如果脚本失败,您应该能够指定failonerror以使构建过程失败:

failoneror:如果命令退出并返回代码信号故障。默认为false。

<shellscript shell="bash" failonerror="true">
    if [[ `whoami` != 'root' ]]; then
        echo "You need to be root to install ooplss";
        exit 1
    fi
</shellscript>

但是,应该可以不使用shell脚本;以下内容未经测试:

<fail message="You need to be root to install ooplss">
 <condition>
   <not>
     <equals arg1="root" arg2="${user.name}"/>
   </not>
 </condition>
</fail>

您可以检查java属性user.name:

<target name="checkroot">
  <condition property="isroot">
    <equals arg1="${os.user}" arg2="root"/>
  </condition>
</target>
<target name="dostuff" depends="checkroot" unless="isroot">
...
</target>

由于ant 1.7,您还可以使用<scriptcondition>在脚本中做一些巧妙的事情,而不是之上的<equals>

使用Ant插件Flaka=
的直接方法

<project xmlns:fl="antlib:it.haefelinger.flaka">
  <fl:when test=" '${user.name}'.toupper eq 'ROOT' ">
    <!-- your tasks go here.. -->
  </fl:when>
</project>

相关内容

  • 没有找到相关文章

最新更新