我有一个 Rails 应用程序,我想更改 ./config/environment/production.rb 文件,以根据我希望该服务器执行的操作具有不同的配置。
因此,我将从 .pp 文件进入 .rb 文件并更改一些字符串,然后重新启动服务。这对我来说似乎真的很糟糕。有一个更好的方法吗?我被要求提供1 RPM 并通过 puppet 更改配置,所以...
class Cloud-widget($MServer, $GoogleEarthServer, $CSever) {
package { "Cloud-widget":
ensure => installed
}
service { "Cloud-widget":
ensure => running,
}
<%
file_names = ['./config/environment/production.rb']
file_names.each do |file_name|
puts text.gsub(/.*config.mserver(.*)/, "config.mserver_root = \"#{$Merver}\"")
puts text.gsub(/.*config.google_earth_url(.*)/, "config.google_earth_url( = \"#{$GoogleEarthServer}\"")
puts text.gsub(/.*config.cserver_base_url(.*)/, "config.cserver_base_url = \"#{$CServer}\"")
end
File.open(file_name, "w") {|file| file.puts output_of_gsub}
%>
service { Cloud-widget:
ensure => running,
subscribe => File["./config/environment/production.rb"],
}
}