linux – 仅当目录存在时才创建文件?

前端之家收集整理的这篇文章主要介绍了linux – 仅当目录存在时才创建文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果目录存在,我正在尝试编写创建文件的模块,否则它不应该做任何事情.
class puppetmodule{
  exec { 'chk_dir_exists':
    command => 'test -d /usr/dir1',path    =>  ["/usr/bin","/usr/sbin","/bin"],} ->

  file {'usr/dir1/test.txt':
    ensure => 'file',owner  => 'root',group  => 'root',mode   => '0750',}
}

下面是它抛出的错误.请就此向我提出建议.

@H_404_6@

Error: test -d /usr/dir1 returned 1 instead of one of [0]

解决方法

这样的东西会起作用:
$dir = "/usr/dir1"

  exec { "chk_${dir}_exist":
    command => "true",onlyif  => "test -d ${dir}"
  }

  file {"${dir}/test.txt":
    ensure => file,require => Exec["chk_${dir}_exist"],}

说明:

onlyif => “test -d ${dir}”

表示仅在test -d的输出为true时才创建Exec资源.

require =>执行[ “CHK _ ${DIR} _exist”]

表示仅在Exec资源存在时才创建文件资源.

如果该目录不存在,则puppet运行将生成错误,指示它无法创建File资源,因为Exec资源不存在.这是预期的,可以安全地忽略,因为其余的木偶目录仍然被应用.

如果该目录存在,则创建并应用文件资源.

原文链接:https://www.f2er.com/linux/397293.html

猜你在找的Linux相关文章