diff options
author | onefang | 2019-12-12 18:54:45 +1000 |
---|---|---|
committer | onefang | 2019-12-12 18:54:45 +1000 |
commit | 165e1f14dd26f9d48fcf427379726629d5751230 (patch) | |
tree | 66df1d7ae3ec9b609a08f8742fb6ba7bf0cdbf68 | |
parent | Remove some more stuff we don't really need to keep around. (diff) | |
download | apt-panopticon-165e1f14dd26f9d48fcf427379726629d5751230.zip apt-panopticon-165e1f14dd26f9d48fcf427379726629d5751230.tar.gz apt-panopticon-165e1f14dd26f9d48fcf427379726629d5751230.tar.bz2 apt-panopticon-165e1f14dd26f9d48fcf427379726629d5751230.tar.xz |
Dump the no fork idea.
-rw-r--r-- | apt-panopticommon.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/apt-panopticommon.lua b/apt-panopticommon.lua index aba2a2a..182d90c 100644 --- a/apt-panopticommon.lua +++ b/apt-panopticommon.lua | |||
@@ -6,8 +6,6 @@ APT.rrd = require 'rrd' | |||
6 | verbosity = -1 | 6 | verbosity = -1 |
7 | APT.origin = false | 7 | APT.origin = false |
8 | APT.keep = false | 8 | APT.keep = false |
9 | -- TODO - Should actually implement this. | ||
10 | APT.fork = true | ||
11 | 9 | ||
12 | APT.options = | 10 | APT.options = |
13 | { | 11 | { |
@@ -86,8 +84,6 @@ APT.parseArgs = function(args) | |||
86 | sendArgs = sendArgs .. a .. " " | 84 | sendArgs = sendArgs .. a .. " " |
87 | elseif "-k" == a then | 85 | elseif "-k" == a then |
88 | APT.keep = true | 86 | APT.keep = true |
89 | elseif "-n" == a then | ||
90 | APT.fork = false | ||
91 | elseif "-o" == a then | 87 | elseif "-o" == a then |
92 | APT.origin = true | 88 | APT.origin = true |
93 | elseif "--" == a:sub(1, 2) then | 89 | elseif "--" == a:sub(1, 2) then |