Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
http://forge.puppetlabs.com - Ubuntu マシンで puppet を使用して Rails をデプロイするためのモジュールはありますか。
次のように、パペットを使用してレールをデプロイするモジュールを作成できます: /puppet/modules/rails/init.pp
class rails { $package = ["rails"] package { $package: ensure => installed, } }
/puppet/manifests/site.pp
node * { include rails }