回答:
「リソースが既に定義されているかどうかをテストする」という意味ですか?リソース(つまり、file {}
など)を定義すると、Puppetは、もしまだ存在しない場合、説明しているものを作成します(ensure => present
もちろん、パスすると仮定します)。
リソースがカタログで既に定義されているかどうかを確認するには:
mark-draytons-macbook:~ mark$ cat test.pp
file { "/tmp/foo": ensure => present }
if defined(File["/tmp/foo"]) {
alert("/tmp/foo is defined")
} else {
alert("/tmp/foo is not defined")
}
if defined(File["/tmp/bar"]) {
alert("/tmp/bar is defined")
} else {
alert("/tmp/bar is not defined")
}
mark-draytons-macbook:~ mark$ puppet test.pp
alert: Scope(Class[main]): /tmp/foo is defined
alert: Scope(Class[main]): /tmp/bar is not defined
notice: //File[/tmp/foo]/ensure: created
注:defined()
は解析順序に依存します。