summaryrefslogtreecommitdiff
path: root/pcr/tahoe-lafs/nodaemon.patch
diff options
context:
space:
mode:
authorGaming4JC <g4jc@openmailbox.org>2015-07-30 17:35:04 -0400
committerGaming4JC <g4jc@openmailbox.org>2015-07-30 17:35:04 -0400
commit581ae757c305e427a5ffb351a7e07fe4b95efb4b (patch)
treebef4d271aeff945b22eef0af0cbe58aa978be5e6 /pcr/tahoe-lafs/nodaemon.patch
parent9137ca7f13283c09f7b703c5a17f44eef41a96e5 (diff)
downloadabslibre-581ae757c305e427a5ffb351a7e07fe4b95efb4b.tar.gz
abslibre-581ae757c305e427a5ffb351a7e07fe4b95efb4b.tar.bz2
abslibre-581ae757c305e427a5ffb351a7e07fe4b95efb4b.zip
removing uneeded patches
Diffstat (limited to 'pcr/tahoe-lafs/nodaemon.patch')
-rw-r--r--pcr/tahoe-lafs/nodaemon.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/pcr/tahoe-lafs/nodaemon.patch b/pcr/tahoe-lafs/nodaemon.patch
deleted file mode 100644
index dfcc0b8ae..000000000
--- a/pcr/tahoe-lafs/nodaemon.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- src/allmydata/scripts/startstop_node.py 2011-10-30 22:54:34.000000000 +0100
-+++ src/allmydata/scripts/startstop_node.py 2011-11-10 15:22:21.432711365 +0100
-@@ -10,6 +10,7 @@
- optFlags = [
- ["profile", "p", "Run under the Python profiler, putting results in 'profiling_results.prof'."],
- ["syslog", None, "Tell the node to log to syslog, not a file."],
-+ ["nodaemon", "n", "Do not daemonize."],
- ]
-
- def getSynopsis(self):
-@@ -70,6 +71,8 @@
- args.extend(["--logfile", os.path.join("logs", "twistd.log")])
- if opts["profile"]:
- args.extend(["--profile=profiling_results.prof", "--savestats",])
-+ if opts["nodaemon"]:
-+ args.extend(["--nodaemon", "--umask=0077"])
- # now we're committed
- os.chdir(basedir)
- from twisted.scripts import twistd