From 8d4fcef9a799fe6ff4cb5719b948d7b60f6e04a6 Mon Sep 17 00:00:00 2001 From: asandikci Date: Wed, 9 Aug 2023 23:24:14 +0300 Subject: [PATCH] feat: add deb packaging resources --- dev/resources.md | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/dev/resources.md b/dev/resources.md index 2e9d863..710f8a0 100644 --- a/dev/resources.md +++ b/dev/resources.md @@ -3,11 +3,13 @@ ### Index - [General](#general) -- [Linux Daemon](#linux-daemon) - - [New Style Daemons](#new-style-daemons) - - [Useful Stackexchange pages](#useful-stackexchange-pages) - - [Signal Handling & Restart](#signal-handling-restart) - - [Daemon Examples in Other Projects](#daemon-examples-in-other-projects) +- [Linux](#linux) + - [Daemons](#daemons) + - [New Style Daemons](#new-style-daemons) + - [Useful Stackexchange pages](#useful-stackexchange-pages) + - [Signal Handling & Restart](#signal-handling-restart) + - [Daemon Examples in Other Projects](#daemon-examples-in-other-projects) + - [deb Packaging](#deb-packaging) - [XMPP](#xmpp) - [XMPP Info](#xmpp-info) - [Security / Privacy / Encryption](#security-privacy-encryption) @@ -37,7 +39,10 @@
-# Linux Daemon +# Linux + +## Daemons + - https://github.com/sevlyar/go-daemon | Ready-to-use Go Daemon - https://www.makeuseof.com/create-daemons-on-linux/ | Step-by-Step Daemon Guideline - [Wikipedia/init](https://en.wikipedia.org/wiki/Init) @@ -77,6 +82,10 @@ - [ahenk/ahenkd.py](https://github.com/Pardus-LiderAhenk/ahenk/blob/master/src/ahenkd.py) - [ahenk/base_daemon.py](https://github.com/Pardus-LiderAhenk/ahenk/blob/master/src/base/deamon/base_daemon.py) +## deb Packaging +- https://go-team.pages.debian.net/packaging.html +- https://wiki.debian.org/SimplePackagingTutorial +- https://people.debian.org/~stapelberg/2015/07/27/dh-make-golang.html