我有一个screen
在 ubuntu 主机上使用的 Python 脚本,我想使用 Chef 配方将其转换为适当的后台服务。python 脚本只是启动一个丢弃所有电子邮件的 SMTP 服务器(一个“黑洞”服务器,对测试很有用),然后调用 pythonasyncore.loop()
永远运行。
我如何把它变成厨师食谱?我正在使用该cookbook_file
资源来上传我的 python 脚本,并且我知道我需要使用该service
资源来启动服务,但我不确定如何实际创建服务。我是否需要在操作系统级别写入文件/etc/init.d
或/etc/systemd
创建服务,或者是否有一些厨师食谱/资源我可以使用给定的命令调用来为我创建后台服务?
我正在使用 Chef 11.18.12并且无法升级,因此排除了一些需要 12+ 的食谱(如runit )。主机操作系统是 Ubuntu 14.04.3
。
这是我到目前为止所得到的:
include_recipe 'apt'
include_recipe 'python'
# the python script to run as a background service
cookbook_file '/usr/local/bin/smtp_server_blackhole.py' do
source 'smtp_blackhole_server.py'
owner 'root'
group 'root'
mode '0755'
end
# the init.d file which defines the service? Not sure about this part...
cookbook_file "init.d_smtp_server_blackhole" do
path "/etc/init.d/smtp_server_blackhole.py"
source "init.d_smtp_server_blackhole"
owner "root"
group "root"
mode "0755"
end
service "smtp_blackhole_server.py" do
# this doesn't work, because the command doesn't reference an existing service?
start_command 'python /usr/local/bin/smtp_blackhole_server.py -c bounce'
action [ :enable, :start ]
# I think I need to do something like this, to wait for the init.d file to be written
subscribes :restart, "cookbook_file[init.d_smtp_server_blackhole]", :immediately
end
潜在的解决方案
- daemontools是一个 LWRP,它允许您使用运行命令的模板文件创建服务。但是,它已经有几年没有更新了,它需要您
svscan
为“适当的 init 系统”设置服务。 - 这个问题对于如何使用各种代码示例和 Python 库(例如python-daemon和daemonize)编写 Python 守护程序服务有一些很好的答案,但它不包括如何在厨师食谱中以幂等方式执行操作系统命令.
- https://github.com/poise/poise-service看起来像我需要的,但它不支持 Chef 11.18,因为 poise 2.0 需要 Chef 12+。