您将如何使用 puppet 更改名称不一致的文件的权限?
我的任务是管理一个在其末尾附加日期的二进制文件,如下所示:
lrwxrwxrwx 1 root root 18 Oct 25 18:46 apbridge -> ./apbridge20131025
lrwxrwxrwx 1 root root 18 Oct 25 18:46 apbridge1025 -> ./apbridge20131025
-rwxr-xr-x 1 root root 2914 Oct 25 18:46 apbridge20131025
apbridge20131025 的权限错误。通常以下内容会改变它:
file {'/root/alpsSim/alps_simulator_r7537/tester/apbridge20131025':
owner => 'root',
group => 'root',
ensure => file,
mode => '0755',
}
但是,因为我无法预测 apbridge 将以什么数字结束,所以这很可能会中断。
我无法控制 apbridgexxxxx 的名称,因为它是由第 3 方脚本安装的。最后的数字代表它安装的日期。
有没有办法在人偶文件资源声明中使用通配符?