例如,我在foo :: bar类中,我想为其设置一个类变量并重新使用它,例如:
文件: bar.pp
class foo::bar () {
class {'other::class':
somevar => 'sth',
}
}
我现在如何在同一文件中使用$somevar
?
class foo::bar () {
class {'other::class':
somevar => 'sth',
}
if $somevar {
notify{"hello! my value is ${somevar}": }
}
}
我可以像上面的示例一样使用$somevar
吗?我可以使用$::somevar
还是$other::class::somevar
吗?