无法弄清楚如何在 Puppet 中使用计划和整理资源

无法弄清楚如何在 Puppet 中使用计划和整理资源

我有傀儡代码,但我无法让它工作:

schedule { 'daily_once':
        period => daily,
        repeat => 1,
}
node 'puppet1' {
        tidy { '/opt/puppetlabs/server/data/puppetserver/bucket':
                age => '5w',
                recurse => true,
                rmdirs => true,
                backup => false,
                schedule => 'daily_once',
        }
        tidy { '/opt/puppetlabs/server/data/puppetserver/reports':
                age => '5w',
                recurse => true,
                rmdirs => true,
                backup => false,
                schedule => 'daily_once',
        }
}

每次 Puppet 代理运行时,tidy 资源仍然会继续执行。

答案1

这是一长期未解决的错误在 Puppet 中,首次报告于 Puppet 2.6.4

据我所知,目前尚无已知的解决方案。

相关内容