From 5f3f4e912f5bd3ca6d484aaeff2aa17b5661a12d Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Mon, 18 Jul 2022 11:06:24 +0200 Subject: [PATCH] Moved daemon3x.py to files/ --- daemon.py | 2 +- daemon3x.py => files/daemon3x.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename daemon3x.py => files/daemon3x.py (100%) diff --git a/daemon.py b/daemon.py index cb42453..de0cd5b 100644 --- a/daemon.py +++ b/daemon.py @@ -4,7 +4,7 @@ Generic linux daemon base class for python 3.x. Original Source: https://web.archive.org/web/20131017130434/http://www.jejik.com/articles/2007/02/a_simple_unix_linux_daemon_in_python/ https://web.archive.org/web/20131017130434/http://www.jejik.com/files/examples/daemon3x.py -See daemon3x.py in the uplink source tree. +See files/daemon3x.py in the uplink source tree. More Information: https://franklingu.github.io/programming/2016/03/01/creating-daemon-process-python-example-explanation/ diff --git a/daemon3x.py b/files/daemon3x.py similarity index 100% rename from daemon3x.py rename to files/daemon3x.py