Skip to content
This repository has been archived by the owner on Apr 19, 2021. It is now read-only.

Commit

Permalink
fix quote issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dougburks committed Aug 24, 2017
1 parent e116b81 commit 8f8f55d
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/soup
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ BRO=no

# no apt options by default
# this is set later if the user passed the -y option to skip interactive mode
APT_OPTIONS=''
APT_OPTIONS=""

#########################################
# Got r00t?
Expand Down Expand Up @@ -75,7 +75,7 @@ do
;;
y)
SKIP=1
APT_OPTIONS='-o DPkg::options::="--force-confdef" -o DPkg::options::="--force-confnew"'
APT_OPTIONS="-o DPkg::options::=--force-confdef -o DPkg::options::=--force-confnew"
;;
esac
done
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
securityonion-sostat (20120722-0ubuntu0securityonion73) trusty; urgency=medium

* fix quote issue

-- Doug Burks <[email protected]> Thu, 24 Aug 2017 17:16:08 -0400

securityonion-sostat (20120722-0ubuntu0securityonion72) trusty; urgency=medium

* issues 928, 1072, and 1108
Expand Down
45 changes: 45 additions & 0 deletions debian/patches/fix-quote-issue
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
Description: <short summary of the patch>
TODO: Put a short summary on the line above and replace this paragraph
with a longer explanation of this change. Complete the meta-information
with other relevant fields (see below for details). To make it easier, the
information below has been extracted from the changelog. Adjust it or drop
it.
.
securityonion-sostat (20120722-0ubuntu0securityonion73) trusty; urgency=medium
.
* fix quote issue
Author: Doug Burks <[email protected]>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: http://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>

--- securityonion-sostat-20120722.orig/bin/soup
+++ securityonion-sostat-20120722/bin/soup
@@ -32,7 +32,7 @@ BRO=no

# no apt options by default
# this is set later if the user passed the -y option to skip interactive mode
-APT_OPTIONS=''
+APT_OPTIONS=""

#########################################
# Got r00t?
@@ -75,7 +75,7 @@ do
;;
y)
SKIP=1
- APT_OPTIONS='-o DPkg::options::="--force-confdef" -o DPkg::options::="--force-confnew"'
+ APT_OPTIONS="-o DPkg::options::=--force-confdef -o DPkg::options::=--force-confnew"
;;
esac
done
1 change: 1 addition & 0 deletions debian/patches/series
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,4 @@ sostat:-sostat-redacted---change-"Port"-to-"Port-"-#1057
check-for-stuck-ELSA-cron.pl-and-limit-netsniff-ng-log-section-to-current-log
netsniff-ng:-calculate-packets-drops-as-percentage
issues-928,-1072,-and-1108
fix-quote-issue

0 comments on commit 8f8f55d

Please sign in to comment.