first commit

This commit is contained in:
2025-04-09 21:43:00 +02:00
commit af5be2794d
39 changed files with 1947 additions and 0 deletions

1
xxx/deb/DEBIAN/conffiles Normal file
View File

@@ -0,0 +1 @@
/opt/xxx/app/xxx_app.conf

10
xxx/deb/DEBIAN/control Normal file
View File

@@ -0,0 +1,10 @@
Package: steffen-xxx
Version: __VERSION__
Section: unknown
Priority: optional
Architecture: all
Depends: libmojolicious-perl >= (9.39), libev-perl, libsteffen-mojoplug-authorization-perl, libsteffen-mojoplug-navhelper-perl, libsteffen-mojoplug-syslog-perl, libmojolicious-plugin-openapi-perl, libsteffen-mojoplug-swaggerui-perl
Installed-Size: __VERSION__
Maintainer: Steffen Junge <steffen.junge@gmx.de>
Description: wofuer
A HTTP Daemon for the steffen xxx Webservice.

7
xxx/deb/DEBIAN/postinst Normal file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
# Startskript aktivieren
systemctl daemon-reload
/bin/systemd-sysusers
/bin/systemd-tmpfiles --create
systemctl enable --now steffen-xxx.service

6
xxx/deb/DEBIAN/prerm Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
# $Id$
# Daemon stoppen und deaktivieren
systemctl stop steffen-xxx.service || true
systemctl disable steffen-xxx.service || true