Puppetで構成された実稼働環境があり、開発マシンで同様の環境(Red Hat、Ubuntu、OSXの混合)をセットアップできるようにしたいと考えています。予想されるように、OSXはここにいる奇妙な人であり、悲しいことに、これを機能させるのに苦労しています。
私の最初の試みはmacports
、次の宣言を使用してを使用することでした:
package { 'rabbitmq-server':
ensure => installed,
provider => macports,
}
しかし、悲しいことに、これは次のエラーを生成します。
Error: /Stage[main]/Rabbitmq/Package[rabbitmq-server]: Could not evaluate: Execution of '/opt/local/bin/port -q installed rabbitmq-server' returned 1: usage: cut -b list [-n] [file ...]
cut -c list [file ...]
cut -f list [-s] [-d delim] [file ...]
while executing
"exec dscl -q . -read /Users/$env(SUDO_USER) NFSHomeDirectory | cut -d ' ' -f 2"
(procedure "mportinit" line 95)
invoked from within
"mportinit ui_options global_options global_variations"
次にhomebrew
、試してみようと思いました。デフォルトで利用可能なパッケージプロバイダーはありませんが、puppet-homebrewは有望と思われました。ここで、私はさらに遠くになり、実際にインストールを機能させることができました。
package { 'rabbitmq':
ensure => installed,
provider => brew,
}
file { "plist":
path => "/Library/LaunchDaemons/homebrew.mxcl.rabbitmq.plist",
source => "/usr/local/opt/rabbitmq/homebrew.mxcl.rabbitmq.plist",
ensure => present,
owner => root,
group => wheel,
mode => 0644,
}
service { "homebrew.mxcl.rabbitmq":
enable => true,
ensure => running,
provider => "launchd",
require => [ File["/Library/LaunchDaemons/homebrew.mxcl.rabbitmq.plist"] ],
}
ここでは、エラーは表示されません。しかし、RabbitMQも起動しません(手動でロードを実行した場合のようにlaunchctl
)。
[... snip ...]
Debug: Executing '/bin/launchctl list'
Debug: Executing '/usr/bin/plutil -convert xml1 -o /dev/stdout
/Library/LaunchDaemons/homebrew.mxcl.rabbitmq.plist'
Debug: Executing '/usr/bin/plutil -convert xml1 -o /dev/stdout
/var/db/launchd.db/com.apple.launchd/overrides.plist'
Debug: /Schedule[weekly]: Skipping device resources because running on a host
Debug: /Schedule[puppet]: Skipping device resources because running on a host
Debug: Finishing transaction 2248294820
Debug: Storing state
Debug: Stored state in 0.01 seconds
Finished catalog run in 25.90 seconds
何が間違っていますか?
編集:記録のために、OSXマシンではなくVagrant VMを使用してこれを行っていますが、ネイティブソリューションが優先されます。
sudo puppet apply manifest.pp
Puppet 3.0.1、Facter 1.6.16で実行しています@JohnSiu:悲しいことに、何もありません。
puppet apply manifest.pp
か?