我目前正在用 dh_virtualenv 打包一个 python 应用程序,用 systemd 进行守护。
我使用 dh_systemd 插件自动安装文件 my_app.service 将安装 .deb 包,但我想在另一个服务中运行另一个进程,使用 celery 为我的应用程序安排任务。
所以,我创建了另一个服务文件,my_app.scheduler.service,但是我不知道如何在我的 debian 打包规则中声明这个文件/app/service,这样在安装整个包时,两个服务文件都会被复制并因此将独立启动。
这是我的 dpkg-buildpackage 命令的 debian conf 文件:
Debian/控制
Source: my_app
Section: python
Priority: extra
Maintainer: me
Build-Depends: debhelper (>= 9), python, dh-virtualenv (>= 0.6), dh-systemd (>= 1.5), adduser
Standards-Version: 3.9.5
Package: my_app
Architecture: any
Pre-Depends: dpkg (>= 1.16.1), python2.7, ${misc:Pre-Depends}
Depends: ${python:Depends}, ${misc:Depends}
Description: blabla
Debian/规则:
#!/usr/bin/make -f
%:
dh $@ --with python-virtualenv --with=systemd
Debian/安装
etc/my_app.config /etc/
Debian/目录:
/var/lib/my_app
/var/log/my_app
当然还有 .service 文件:
debian/my_app.service
[Unit]
Description=APP
[Service]
Type=simple
User=app_user
EnvironmentFile=/etc/my_app.config
ExecStart=/usr/share/python/my_app/bin/gunicorn -w 10 -b 0.0.0.0:6000 -t 600 my_app_python_package:app
[Install]
WantedBy=multi-user.target
debian/my_app.scheduler.service
[Unit]
Description=APP Scheduler
[Service]
Type=simple
User=app_user
EnvironmentFile=/etc/my_app.config
ExecStart=/usr/share/python/my_app/bin/celery worker -A my_app_python_package.tasks
[Install]
WantedBy=multi-user.targetroot