diff options
author | bobpaul | 2024-10-24 10:01:59 -0400 |
---|---|---|
committer | bobpaul | 2024-10-24 10:05:41 -0400 |
commit | 0a0a3b675899e4e03e58e74f1799386c39b1f25f (patch) | |
tree | 88685894fd8d32bb1a8e9db7d0f383b13d6433e0 | |
parent | 02a3e1164ed3090f6a8796d22de1cf336a830415 (diff) | |
download | aur-obfuscation-tunnel-service.tar.gz |
Turns out repeated options are silently ignored and only the last declared option is used
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 4 | ||||
-rw-r--r-- | example.conf | 8 |
3 files changed, 7 insertions, 11 deletions
@@ -1,6 +1,6 @@ pkgbase = obfuscation-tunnel-service pkgdesc = Systemd service for Obfuscation-Tunnel - pkgver = 0.1.0 + pkgver = 0.1.1 pkgrel = 1 arch = any license = BSD @@ -10,8 +10,8 @@ pkgbase = obfuscation-tunnel-service source = obfuscation-tunnel@.service source = obfuscation-tunnel-launcher source = example.conf - sha256sums = 9cd80d8f2c20909806ee66f88dc8141e90ad15d855a460b029bbd0d82739b2f5 + sha256sums = b4f8da406617d483bdc483a7b71302e585c8f5488b0d81144641b9280020a1a9 sha256sums = 6eb6c7003a63b1a8a1c77500bfb71acf1ca2e8cb57b3f9e491d0a4d4a2d49ea5 - sha256sums = 665b490dfd185426fb6c30a1ed470e4810ef4d09d137beb636444d364c0b9803 + sha256sums = 866744d8111f9663bf46a240d22c41ad214816370f9c08b817778502ab75dab8 pkgname = obfuscation-tunnel-service @@ -1,7 +1,7 @@ # Maintainer: bobpaul <aurpackage [at] bobpaul 'period' org> _pkgname="obfuscation-tunnel" pkgname="${_pkgname}-service" -pkgver=0.1.0 +pkgver=0.1.1 pkgrel=1 epoch= pkgdesc="Systemd service for Obfuscation-Tunnel" @@ -23,7 +23,7 @@ source=( 'obfuscation-tunnel@.service' 'obfuscation-tunnel-launcher' 'example.co noextract=() sha256sums=('b4f8da406617d483bdc483a7b71302e585c8f5488b0d81144641b9280020a1a9' '6eb6c7003a63b1a8a1c77500bfb71acf1ca2e8cb57b3f9e491d0a4d4a2d49ea5' - '665b490dfd185426fb6c30a1ed470e4810ef4d09d137beb636444d364c0b9803') + '866744d8111f9663bf46a240d22c41ad214816370f9c08b817778502ab75dab8') validpgpkeys=() package() { diff --git a/example.conf b/example.conf index c0b1022f1f71..9813cc861a7a 100644 --- a/example.conf +++ b/example.conf @@ -23,14 +23,10 @@ #KEY=key # -m option. -# This may be declared twice if a mocker is used for both the input and the output -# ex '-m dns_server -m http_ws_client' -# to receive incoming packets from a dns_client mock and send outgoing to a http_ws_server mock +# currently obfuscation-tunnel only supports a single MOCK. +# it's not possible to use a mock for both incoming and outgoing traffic #MOCK=mode -# -m option to connect through a socks5 server -#SOCKS=socks5:addr:port - # -v option #VERBOSE=0 |