Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

49fc71236a76 breaks parsing of OPENVPN_CONFIG to env vars #2418

Closed
7 of 8 tasks
reven opened this issue Nov 18, 2022 · 8 comments
Closed
7 of 8 tasks

49fc71236a76 breaks parsing of OPENVPN_CONFIG to env vars #2418

reven opened this issue Nov 18, 2022 · 8 comments
Assignees
Labels
inactivity Used by Stale bot to mark issues that will be closed

Comments

@reven
Copy link

reven commented Nov 18, 2022

Is there a pinned issue for this?

  • I have read the pinned issues and could not find my issue

Is there an existing or similar issue/discussion for this?

  • I have searched the existing issues
  • I have searched the existing discussions

Is there any comment in the documentation for this?

  • I have read the documentation, especially the FAQ and Troubleshooting parts

Is this related to a provider?

  • I have checked the provider repo for issues
  • My issue is NOT related to a provider

Are you using the latest release?

  • I am using the latest release

Have you tried using the dev branch latest?

  • I have tried using dev branch

Docker run config used

relevant config:

OPENVPN_PROVIDER: PRIVATEVPN
OPENVPN_CONFIG: SE Stockholm
CREATE_TUN_DEVICE: true (without this my config didn't work in previous version)
ENABLE_UFW: true

Current Behavior

Latest (49fc71236a76) fails to start. After looping a few times, run fails. Logs suggest errors in parsing profile name due to space ("SE Stockholm"). Mainly suggested by the following log lines:

2022-11-18 08:52:58.045139+00:00sed: can't read /etc/openvpn/privatevpn/SE: No such file or directory
2022-11-18 08:52:58.049726+00:00/etc/transmission/environment-variables.sh: line 20: export: `Stockholm.ovpn': not a valid identifier

There are additional issues with failure to set the routes for openvpn, but I can't isolate the issue, so not sure if caused/related to what I describe or completely different issue.

Expected Behavior

Configuration tested to work with c9fcfb332f59. Boots as expected and connects to SE Stockholm. Runs script for automatic port forwarding, updates UFW rules and tests port.

2022-11-18 08:47:59.915061+00:00Provider PRIVATEVPN has a script for automatic port forwarding. Will run it now.
2022-11-18 08:47:59.915074+00:00If you want to disable this, set environment variable DISABLE_PORT_UPDATER=true
2022-11-18 08:47:59.915256+00:00Transmission startup script complete.

...

2022-11-18 08:48:04.145539+00:00Rule updated
2022-11-18 08:48:04.149778+00:00allowing 61612 through the firewall
2022-11-18 08:48:04.191732+00:00Rule added
2022-11-18 08:48:04.201068+00:00localhost:9091/transmission/rpc/ responded: "success"
2022-11-18 08:48:04.201572+00:00Checking port...
2022-11-18 08:48:15.183110+00:00Port is open: Yes

How have you tried to solve the problem?

Reverting back to c9fcfb332f59 works without issue.

Log output

2022-11-18 08:52:58.030223+00:002022-11-18 00:52:58 sitnl_send: rtnl: generic error (-101): Network is unreachable
2022-11-18 08:52:58.030230+00:002022-11-18 00:52:58 ERROR: Linux route add command failed
2022-11-18 08:52:58.030242+00:002022-11-18 00:52:58 net_route_v4_add: 0.0.0.0/1 via XX.XX.XX.XX dev [NULL] table 0 metric -1
2022-11-18 08:52:58.030249+00:002022-11-18 00:52:58 net_route_v4_add: 128.0.0.0/1 via XX.XX.XX.XX dev [NULL] table 0 metric -1
2022-11-18 08:52:58.044356+00:00/etc/transmission/environment-variables.sh: line 20: export: `Stockholm.ovpn': not a valid identifier
2022-11-18 08:52:58.045139+00:00sed: can't read /etc/openvpn/privatevpn/SE: No such file or directory
2022-11-18 08:52:58.049726+00:00/etc/transmission/environment-variables.sh: line 20: export: `Stockholm.ovpn': not a valid identifier

...

2022-11-18 08:52:58.578990+00:00STARTING TRANSMISSION
2022-11-18 08:52:58.579166+00:00Provider PRIVATEVPN has a script for automatic port forwarding. Will run it now.
2022-11-18 08:52:58.579175+00:00If you want to disable this, set environment variable DISABLE_PORT_UPDATER=true
2022-11-18 08:52:58.579281+00:00Transmission startup script complete.
2022-11-18 08:52:58.580173+00:00/etc/transmission/environment-variables.sh: line 20: export: `Stockholm.ovpn': not a valid identifier
2022-11-18 08:52:58.580292+00:00/etc/transmission/environment-variables.sh: line 20: export: `Stockholm.ovpn': not a valid identifier
2022-11-18 08:52:58.580686+00:002022-11-18 00:52:58 WARNING: this configuration may cache passwords in memory -- use the auth-nocache option to prevent this
2022-11-18 08:52:58.580696+00:002022-11-18 00:52:58 Initialization Sequence Completed
2022-11-18 08:53:18.634337+00:00PrivateVPN port forward API returned a bad response
2022-11-18 08:53:18.634358+00:00curl encountered an error looking up forwarded port: 6

[loops at this point]

HW/SW Environment

- OS: TrueNAS-SCALE-22.02.4
- Docker: 20.10.12
Running as a custom docker image (not a TrueChart or official app)

Anything else?

No response

@reven
Copy link
Author

reven commented Nov 18, 2022

This might be a copy of #2406; I did read it, but because op said it was resolved and had other issues with downloads, I thought it was a different issue. Just re-read it now and saw that he resolved it by using a profile without a space in the name.

haugene added a commit that referenced this issue Dec 2, 2022
@haugene
Copy link
Owner

haugene commented Dec 2, 2022

Hey 👋 Seems you're right that there might be some breakage here. #2252 adds "CONFIG" to the persisted environment and when that includes a space it breaks the shell script that is included in many other scripts to persist the environment variables between the openvpn startup and transmission processes.

I've pushed a change to the dev branch. I'm now quoting all the export statements and don't think that should cause any trouble with the other variables because any variable in bash is treated as a string anyways(?). If it proves to cause problems we can do a special case and only quote the CONFIG variable.

Try pulling and running the dev image and see if that fixes the problem?

@haugene
Copy link
Owner

haugene commented Dec 2, 2022

Also... I can't seem to find the versions you're referring to. 49fc71236a76 and c9fcfb332f59. I was assuming they were git commits, but can't seem to find them? 🤔

@haugene haugene self-assigned this Dec 2, 2022
@reven
Copy link
Author

reven commented Dec 3, 2022

Oh, I was referring to docker image hashes. Probably commits would've been more useful, sorry.

In the end I saw that someone had put a "stockholm-sweden" profile in the repo for PrivateVPN, probably to circumvent this issue, so I was using the latest commit. But I'll give the dev branch a try.

Thank you!

@haugene
Copy link
Owner

haugene commented Dec 20, 2022

How is the testing going @reven ? I'll merge this change to the main branch soon and close this issue unless I hear otherwise 😄

@reven
Copy link
Author

reven commented Jan 10, 2023

Sorry I couldn't get back to you sooner @haugene. I think this bug is fixed, so this issue can be close. Using the dev image that you pushed to docker hub 9 days ago it picks up the configuration properly. Thanks!

The container fails to start for some other reason, though. I'm still trying to troubleshoot why. nevermind, everything works perfectly. PrivateVPN just changed all their servers and my DNS hadn't caught up.

@stale
Copy link

stale bot commented Mar 18, 2023

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.

@stale stale bot added the inactivity Used by Stale bot to mark issues that will be closed label Mar 18, 2023
@reven
Copy link
Author

reven commented Mar 18, 2023

Forgot to close it.

@reven reven closed this as completed Mar 18, 2023
pkishino added a commit that referenced this issue Apr 15, 2023
* Quoute variables, fixes #2406 and #2418

* Fix sed busy (#2426)

* fix sed device or resource busy errors

Signed-off-by: Jonathan Sloan <[email protected]>

* update info

Signed-off-by: Jonathan Sloan <[email protected]>

* update docs

Signed-off-by: Jonathan Sloan <[email protected]>

* log and fail if config is a mountpoint

Signed-off-by: Jonathan Sloan <[email protected]>

* correct mountpoint check

Signed-off-by: Jonathan Sloan <[email protected]>

Signed-off-by: Jonathan Sloan <[email protected]>

* Fix fallback of transmission-home #2409

* Fix to use iptables-legacy rather than iptables-nft (#2456)

* Fix bug: the evironment file will be invalid (#2496)

something environment like:
`name=foo bar` 
will be invalid in the environment file, in a real example, it will be like `provider= SE Sto`.

Simply add change it to `provider="SE Sto"` will fix that.

* restart privoxy if docker changed eth0 address. (#2494)

* restart privoxy if docker changed eth0 address.

* sometimes, pidfile exists but process is dead

* Simplify RPC creds setup (#2480)

Reduce the complexity associated with creating RPC creds

* Fix bitwise decimal & octal (#2457)

* Fix bitwise decimal & octal

The issue is tracked here: #2450 (comment)

Also uses the TRASNMSISSION_UMASK variable instead of settings.json since updateSettings.py is called after userSetup.sh causing the TRANSMISSION_UMASK in settings.json to be stale when userSetup.sh accesses it.

* fix: missing {} in sh variable

* fix: missing {} in sh variable

* fix regex for webproxy enabled (#2505)

* review nordvpn error exit messages + tests (#2518)

* Check for files existing instead of being executable #2459

* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

---------

Signed-off-by: Jonathan Sloan <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>
@pkishino pkishino mentioned this issue Apr 15, 2023
6 tasks
pkishino added a commit that referenced this issue Apr 15, 2023
* Quoute variables, fixes #2406 and #2418

* Fix sed busy (#2426)

* fix sed device or resource busy errors



* update info



* update docs



* log and fail if config is a mountpoint



* correct mountpoint check





* Fix fallback of transmission-home #2409

* Fix to use iptables-legacy rather than iptables-nft (#2456)

* Fix bug: the evironment file will be invalid (#2496)

something environment like:
`name=foo bar` 
will be invalid in the environment file, in a real example, it will be like `provider= SE Sto`.

Simply add change it to `provider="SE Sto"` will fix that.

* restart privoxy if docker changed eth0 address. (#2494)

* restart privoxy if docker changed eth0 address.

* sometimes, pidfile exists but process is dead

* Simplify RPC creds setup (#2480)

Reduce the complexity associated with creating RPC creds

* Fix bitwise decimal & octal (#2457)

* Fix bitwise decimal & octal

The issue is tracked here: #2450 (comment)

Also uses the TRASNMSISSION_UMASK variable instead of settings.json since updateSettings.py is called after userSetup.sh causing the TRANSMISSION_UMASK in settings.json to be stale when userSetup.sh accesses it.

* fix: missing {} in sh variable

* fix: missing {} in sh variable

* fix regex for webproxy enabled (#2505)

* review nordvpn error exit messages + tests (#2518)

* Check for files existing instead of being executable #2459

* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------



* Docs: add capabilities for Podman to tips&tricks (#2546)



* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------








* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------



* Docs: add capabilities for Podman to tips&tricks (#2546)



* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------








---------

Signed-off-by: Jonathan Sloan <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>
pkishino added a commit that referenced this issue Apr 15, 2023
* Quoute variables, fixes #2406 and #2418

* Fix sed busy (#2426)

* fix sed device or resource busy errors

Signed-off-by: Jonathan Sloan <[email protected]>

* update info

Signed-off-by: Jonathan Sloan <[email protected]>

* update docs

Signed-off-by: Jonathan Sloan <[email protected]>

* log and fail if config is a mountpoint

Signed-off-by: Jonathan Sloan <[email protected]>

* correct mountpoint check

Signed-off-by: Jonathan Sloan <[email protected]>

Signed-off-by: Jonathan Sloan <[email protected]>

* Fix fallback of transmission-home #2409

* Fix to use iptables-legacy rather than iptables-nft (#2456)

* Fix bug: the evironment file will be invalid (#2496)

something environment like:
`name=foo bar` 
will be invalid in the environment file, in a real example, it will be like `provider= SE Sto`.

Simply add change it to `provider="SE Sto"` will fix that.

* restart privoxy if docker changed eth0 address. (#2494)

* restart privoxy if docker changed eth0 address.

* sometimes, pidfile exists but process is dead

* Simplify RPC creds setup (#2480)

Reduce the complexity associated with creating RPC creds

* Fix bitwise decimal & octal (#2457)

* Fix bitwise decimal & octal

The issue is tracked here: #2450 (comment)

Also uses the TRASNMSISSION_UMASK variable instead of settings.json since updateSettings.py is called after userSetup.sh causing the TRANSMISSION_UMASK in settings.json to be stale when userSetup.sh accesses it.

* fix: missing {} in sh variable

* fix: missing {} in sh variable

* fix regex for webproxy enabled (#2505)

* review nordvpn error exit messages + tests (#2518)

* Check for files existing instead of being executable #2459

* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* Update master with latest dev fixes (#2579) (#2582)

* Quoute variables, fixes #2406 and #2418

* Fix sed busy (#2426)

* fix sed device or resource busy errors



* update info



* update docs



* log and fail if config is a mountpoint



* correct mountpoint check





* Fix fallback of transmission-home #2409

* Fix to use iptables-legacy rather than iptables-nft (#2456)

* Fix bug: the evironment file will be invalid (#2496)

something environment like:
`name=foo bar` 
will be invalid in the environment file, in a real example, it will be like `provider= SE Sto`.

Simply add change it to `provider="SE Sto"` will fix that.

* restart privoxy if docker changed eth0 address. (#2494)

* restart privoxy if docker changed eth0 address.

* sometimes, pidfile exists but process is dead

* Simplify RPC creds setup (#2480)

Reduce the complexity associated with creating RPC creds

* Fix bitwise decimal & octal (#2457)

* Fix bitwise decimal & octal

The issue is tracked here: #2450 (comment)

Also uses the TRASNMSISSION_UMASK variable instead of settings.json since updateSettings.py is called after userSetup.sh causing the TRANSMISSION_UMASK in settings.json to be stale when userSetup.sh accesses it.

* fix: missing {} in sh variable

* fix: missing {} in sh variable

* fix regex for webproxy enabled (#2505)

* review nordvpn error exit messages + tests (#2518)

* Check for files existing instead of being executable #2459

* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------



* Docs: add capabilities for Podman to tips&tricks (#2546)



* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------








* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------



* Docs: add capabilities for Podman to tips&tricks (#2546)



* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------








---------

Signed-off-by: Jonathan Sloan <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>

---------

Signed-off-by: Jonathan Sloan <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>
pkishino added a commit that referenced this issue Apr 16, 2023
* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* Update master with Transmission 4 (#2576)

* Image with Transmission 4.0.0-beta

* Build in separate stage

* Updated to beta2

* Update Dockerfile

* Updated transmission to 4.0.0 release

* Update Dockerfile

* update beta (#2554)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* Update Dockerfile

4.0.2

* Update configure-openvpn.sh (#2567)

Same changes to master going to beta for beta tests w latest Transmission

* Transmission->4.0.3

* prep new master (#2575)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>

* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* Update docker-image-builds.yml

Removed deleted beta branch

* Update Dockerfile

Removed beta reference

* Update master with latest dev fixes (#2579)

* Quoute variables, fixes #2406 and #2418

* Fix sed busy (#2426)

* fix sed device or resource busy errors

Signed-off-by: Jonathan Sloan <[email protected]>

* update info

Signed-off-by: Jonathan Sloan <[email protected]>

* update docs

Signed-off-by: Jonathan Sloan <[email protected]>

* log and fail if config is a mountpoint

Signed-off-by: Jonathan Sloan <[email protected]>

* correct mountpoint check

Signed-off-by: Jonathan Sloan <[email protected]>

Signed-off-by: Jonathan Sloan <[email protected]>

* Fix fallback of transmission-home #2409

* Fix to use iptables-legacy rather than iptables-nft (#2456)

* Fix bug: the evironment file will be invalid (#2496)

something environment like:
`name=foo bar` 
will be invalid in the environment file, in a real example, it will be like `provider= SE Sto`.

Simply add change it to `provider="SE Sto"` will fix that.

* restart privoxy if docker changed eth0 address. (#2494)

* restart privoxy if docker changed eth0 address.

* sometimes, pidfile exists but process is dead

* Simplify RPC creds setup (#2480)

Reduce the complexity associated with creating RPC creds

* Fix bitwise decimal & octal (#2457)

* Fix bitwise decimal & octal

The issue is tracked here: #2450 (comment)

Also uses the TRASNMSISSION_UMASK variable instead of settings.json since updateSettings.py is called after userSetup.sh causing the TRANSMISSION_UMASK in settings.json to be stale when userSetup.sh accesses it.

* fix: missing {} in sh variable

* fix: missing {} in sh variable

* fix regex for webproxy enabled (#2505)

* review nordvpn error exit messages + tests (#2518)

* Check for files existing instead of being executable #2459

* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

---------

Signed-off-by: Jonathan Sloan <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>

* Update master with latest dev fixes (#2579) (#2582)

* Quoute variables, fixes #2406 and #2418

* Fix sed busy (#2426)

* fix sed device or resource busy errors



* update info



* update docs



* log and fail if config is a mountpoint



* correct mountpoint check





* Fix fallback of transmission-home #2409

* Fix to use iptables-legacy rather than iptables-nft (#2456)

* Fix bug: the evironment file will be invalid (#2496)

something environment like:
`name=foo bar` 
will be invalid in the environment file, in a real example, it will be like `provider= SE Sto`.

Simply add change it to `provider="SE Sto"` will fix that.

* restart privoxy if docker changed eth0 address. (#2494)

* restart privoxy if docker changed eth0 address.

* sometimes, pidfile exists but process is dead

* Simplify RPC creds setup (#2480)

Reduce the complexity associated with creating RPC creds

* Fix bitwise decimal & octal (#2457)

* Fix bitwise decimal & octal

The issue is tracked here: #2450 (comment)

Also uses the TRASNMSISSION_UMASK variable instead of settings.json since updateSettings.py is called after userSetup.sh causing the TRANSMISSION_UMASK in settings.json to be stale when userSetup.sh accesses it.

* fix: missing {} in sh variable

* fix: missing {} in sh variable

* fix regex for webproxy enabled (#2505)

* review nordvpn error exit messages + tests (#2518)

* Check for files existing instead of being executable #2459

* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------



* Docs: add capabilities for Podman to tips&tricks (#2546)



* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------








* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------



* Docs: add capabilities for Podman to tips&tricks (#2546)



* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------








---------

Signed-off-by: Jonathan Sloan <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>

* Merge dev into master (#2583)

* Quoute variables, fixes #2406 and #2418

* Fix sed busy (#2426)

* fix sed device or resource busy errors

Signed-off-by: Jonathan Sloan <[email protected]>

* update info

Signed-off-by: Jonathan Sloan <[email protected]>

* update docs

Signed-off-by: Jonathan Sloan <[email protected]>

* log and fail if config is a mountpoint

Signed-off-by: Jonathan Sloan <[email protected]>

* correct mountpoint check

Signed-off-by: Jonathan Sloan <[email protected]>

Signed-off-by: Jonathan Sloan <[email protected]>

* Fix fallback of transmission-home #2409

* Fix to use iptables-legacy rather than iptables-nft (#2456)

* Fix bug: the evironment file will be invalid (#2496)

something environment like:
`name=foo bar` 
will be invalid in the environment file, in a real example, it will be like `provider= SE Sto`.

Simply add change it to `provider="SE Sto"` will fix that.

* restart privoxy if docker changed eth0 address. (#2494)

* restart privoxy if docker changed eth0 address.

* sometimes, pidfile exists but process is dead

* Simplify RPC creds setup (#2480)

Reduce the complexity associated with creating RPC creds

* Fix bitwise decimal & octal (#2457)

* Fix bitwise decimal & octal

The issue is tracked here: #2450 (comment)

Also uses the TRASNMSISSION_UMASK variable instead of settings.json since updateSettings.py is called after userSetup.sh causing the TRANSMISSION_UMASK in settings.json to be stale when userSetup.sh accesses it.

* fix: missing {} in sh variable

* fix: missing {} in sh variable

* fix regex for webproxy enabled (#2505)

* review nordvpn error exit messages + tests (#2518)

* Check for files existing instead of being executable #2459

* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* Update master with latest dev fixes (#2579) (#2582)

* Quoute variables, fixes #2406 and #2418

* Fix sed busy (#2426)

* fix sed device or resource busy errors



* update info



* update docs



* log and fail if config is a mountpoint



* correct mountpoint check





* Fix fallback of transmission-home #2409

* Fix to use iptables-legacy rather than iptables-nft (#2456)

* Fix bug: the evironment file will be invalid (#2496)

something environment like:
`name=foo bar` 
will be invalid in the environment file, in a real example, it will be like `provider= SE Sto`.

Simply add change it to `provider="SE Sto"` will fix that.

* restart privoxy if docker changed eth0 address. (#2494)

* restart privoxy if docker changed eth0 address.

* sometimes, pidfile exists but process is dead

* Simplify RPC creds setup (#2480)

Reduce the complexity associated with creating RPC creds

* Fix bitwise decimal & octal (#2457)

* Fix bitwise decimal & octal

The issue is tracked here: #2450 (comment)

Also uses the TRASNMSISSION_UMASK variable instead of settings.json since updateSettings.py is called after userSetup.sh causing the TRANSMISSION_UMASK in settings.json to be stale when userSetup.sh accesses it.

* fix: missing {} in sh variable

* fix: missing {} in sh variable

* fix regex for webproxy enabled (#2505)

* review nordvpn error exit messages + tests (#2518)

* Check for files existing instead of being executable #2459

* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------



* Docs: add capabilities for Podman to tips&tricks (#2546)



* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------








* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------



* Docs: add capabilities for Podman to tips&tricks (#2546)



* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------








---------

Signed-off-by: Jonathan Sloan <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>

---------

Signed-off-by: Jonathan Sloan <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Jonathan Sloan <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
pkishino added a commit that referenced this issue Apr 16, 2023
* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* Update master with Transmission 4 (#2576)

* Image with Transmission 4.0.0-beta

* Build in separate stage

* Updated to beta2

* Update Dockerfile

* Updated transmission to 4.0.0 release

* Update Dockerfile

* update beta (#2554)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* Update Dockerfile

4.0.2

* Update configure-openvpn.sh (#2567)

Same changes to master going to beta for beta tests w latest Transmission

* Transmission->4.0.3

* prep new master (#2575)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>

* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* Update docker-image-builds.yml

Removed deleted beta branch

* Update Dockerfile

Removed beta reference

* Update master with latest dev fixes (#2579)

* Quoute variables, fixes #2406 and #2418

* Fix sed busy (#2426)

* fix sed device or resource busy errors

Signed-off-by: Jonathan Sloan <[email protected]>

* update info

Signed-off-by: Jonathan Sloan <[email protected]>

* update docs

Signed-off-by: Jonathan Sloan <[email protected]>

* log and fail if config is a mountpoint

Signed-off-by: Jonathan Sloan <[email protected]>

* correct mountpoint check

Signed-off-by: Jonathan Sloan <[email protected]>

Signed-off-by: Jonathan Sloan <[email protected]>

* Fix fallback of transmission-home #2409

* Fix to use iptables-legacy rather than iptables-nft (#2456)

* Fix bug: the evironment file will be invalid (#2496)

something environment like:
`name=foo bar` 
will be invalid in the environment file, in a real example, it will be like `provider= SE Sto`.

Simply add change it to `provider="SE Sto"` will fix that.

* restart privoxy if docker changed eth0 address. (#2494)

* restart privoxy if docker changed eth0 address.

* sometimes, pidfile exists but process is dead

* Simplify RPC creds setup (#2480)

Reduce the complexity associated with creating RPC creds

* Fix bitwise decimal & octal (#2457)

* Fix bitwise decimal & octal

The issue is tracked here: #2450 (comment)

Also uses the TRASNMSISSION_UMASK variable instead of settings.json since updateSettings.py is called after userSetup.sh causing the TRANSMISSION_UMASK in settings.json to be stale when userSetup.sh accesses it.

* fix: missing {} in sh variable

* fix: missing {} in sh variable

* fix regex for webproxy enabled (#2505)

* review nordvpn error exit messages + tests (#2518)

* Check for files existing instead of being executable #2459

* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

---------

Signed-off-by: Jonathan Sloan <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>

* Update master with latest dev fixes (#2579) (#2582)

* Quoute variables, fixes #2406 and #2418

* Fix sed busy (#2426)

* fix sed device or resource busy errors



* update info



* update docs



* log and fail if config is a mountpoint



* correct mountpoint check





* Fix fallback of transmission-home #2409

* Fix to use iptables-legacy rather than iptables-nft (#2456)

* Fix bug: the evironment file will be invalid (#2496)

something environment like:
`name=foo bar` 
will be invalid in the environment file, in a real example, it will be like `provider= SE Sto`.

Simply add change it to `provider="SE Sto"` will fix that.

* restart privoxy if docker changed eth0 address. (#2494)

* restart privoxy if docker changed eth0 address.

* sometimes, pidfile exists but process is dead

* Simplify RPC creds setup (#2480)

Reduce the complexity associated with creating RPC creds

* Fix bitwise decimal & octal (#2457)

* Fix bitwise decimal & octal

The issue is tracked here: #2450 (comment)

Also uses the TRASNMSISSION_UMASK variable instead of settings.json since updateSettings.py is called after userSetup.sh causing the TRANSMISSION_UMASK in settings.json to be stale when userSetup.sh accesses it.

* fix: missing {} in sh variable

* fix: missing {} in sh variable

* fix regex for webproxy enabled (#2505)

* review nordvpn error exit messages + tests (#2518)

* Check for files existing instead of being executable #2459

* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------



* Docs: add capabilities for Podman to tips&tricks (#2546)



* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------








* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------



* Docs: add capabilities for Podman to tips&tricks (#2546)



* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------








---------

Signed-off-by: Jonathan Sloan <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>

* Merge dev into master (#2583)

* Quoute variables, fixes #2406 and #2418

* Fix sed busy (#2426)

* fix sed device or resource busy errors

Signed-off-by: Jonathan Sloan <[email protected]>

* update info

Signed-off-by: Jonathan Sloan <[email protected]>

* update docs

Signed-off-by: Jonathan Sloan <[email protected]>

* log and fail if config is a mountpoint

Signed-off-by: Jonathan Sloan <[email protected]>

* correct mountpoint check

Signed-off-by: Jonathan Sloan <[email protected]>

Signed-off-by: Jonathan Sloan <[email protected]>

* Fix fallback of transmission-home #2409

* Fix to use iptables-legacy rather than iptables-nft (#2456)

* Fix bug: the evironment file will be invalid (#2496)

something environment like:
`name=foo bar` 
will be invalid in the environment file, in a real example, it will be like `provider= SE Sto`.

Simply add change it to `provider="SE Sto"` will fix that.

* restart privoxy if docker changed eth0 address. (#2494)

* restart privoxy if docker changed eth0 address.

* sometimes, pidfile exists but process is dead

* Simplify RPC creds setup (#2480)

Reduce the complexity associated with creating RPC creds

* Fix bitwise decimal & octal (#2457)

* Fix bitwise decimal & octal

The issue is tracked here: #2450 (comment)

Also uses the TRASNMSISSION_UMASK variable instead of settings.json since updateSettings.py is called after userSetup.sh causing the TRANSMISSION_UMASK in settings.json to be stale when userSetup.sh accesses it.

* fix: missing {} in sh variable

* fix: missing {} in sh variable

* fix regex for webproxy enabled (#2505)

* review nordvpn error exit messages + tests (#2518)

* Check for files existing instead of being executable #2459

* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* Update master with latest dev fixes (#2579) (#2582)

* Quoute variables, fixes #2406 and #2418

* Fix sed busy (#2426)

* fix sed device or resource busy errors



* update info



* update docs



* log and fail if config is a mountpoint



* correct mountpoint check





* Fix fallback of transmission-home #2409

* Fix to use iptables-legacy rather than iptables-nft (#2456)

* Fix bug: the evironment file will be invalid (#2496)

something environment like:
`name=foo bar` 
will be invalid in the environment file, in a real example, it will be like `provider= SE Sto`.

Simply add change it to `provider="SE Sto"` will fix that.

* restart privoxy if docker changed eth0 address. (#2494)

* restart privoxy if docker changed eth0 address.

* sometimes, pidfile exists but process is dead

* Simplify RPC creds setup (#2480)

Reduce the complexity associated with creating RPC creds

* Fix bitwise decimal & octal (#2457)

* Fix bitwise decimal & octal

The issue is tracked here: #2450 (comment)

Also uses the TRASNMSISSION_UMASK variable instead of settings.json since updateSettings.py is called after userSetup.sh causing the TRANSMISSION_UMASK in settings.json to be stale when userSetup.sh accesses it.

* fix: missing {} in sh variable

* fix: missing {} in sh variable

* fix regex for webproxy enabled (#2505)

* review nordvpn error exit messages + tests (#2518)

* Check for files existing instead of being executable #2459

* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------



* Docs: add capabilities for Podman to tips&tricks (#2546)



* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------








* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------



* Docs: add capabilities for Podman to tips&tricks (#2546)



* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------








---------

Signed-off-by: Jonathan Sloan <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>

---------

Signed-off-by: Jonathan Sloan <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Jonathan Sloan <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
pkishino added a commit that referenced this issue Apr 17, 2023
* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* Update master with Transmission 4 (#2576)

* Image with Transmission 4.0.0-beta

* Build in separate stage

* Updated to beta2

* Update Dockerfile

* Updated transmission to 4.0.0 release

* Update Dockerfile

* update beta (#2554)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* Update Dockerfile

4.0.2

* Update configure-openvpn.sh (#2567)

Same changes to master going to beta for beta tests w latest Transmission

* Transmission->4.0.3

* prep new master (#2575)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>

* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* Update docker-image-builds.yml

Removed deleted beta branch

* Update Dockerfile

Removed beta reference

* Update master with latest dev fixes (#2579)

* Quoute variables, fixes #2406 and #2418

* Fix sed busy (#2426)

* fix sed device or resource busy errors

Signed-off-by: Jonathan Sloan <[email protected]>

* update info

Signed-off-by: Jonathan Sloan <[email protected]>

* update docs

Signed-off-by: Jonathan Sloan <[email protected]>

* log and fail if config is a mountpoint

Signed-off-by: Jonathan Sloan <[email protected]>

* correct mountpoint check

Signed-off-by: Jonathan Sloan <[email protected]>

Signed-off-by: Jonathan Sloan <[email protected]>

* Fix fallback of transmission-home #2409

* Fix to use iptables-legacy rather than iptables-nft (#2456)

* Fix bug: the evironment file will be invalid (#2496)

something environment like:
`name=foo bar` 
will be invalid in the environment file, in a real example, it will be like `provider= SE Sto`.

Simply add change it to `provider="SE Sto"` will fix that.

* restart privoxy if docker changed eth0 address. (#2494)

* restart privoxy if docker changed eth0 address.

* sometimes, pidfile exists but process is dead

* Simplify RPC creds setup (#2480)

Reduce the complexity associated with creating RPC creds

* Fix bitwise decimal & octal (#2457)

* Fix bitwise decimal & octal

The issue is tracked here: #2450 (comment)

Also uses the TRASNMSISSION_UMASK variable instead of settings.json since updateSettings.py is called after userSetup.sh causing the TRANSMISSION_UMASK in settings.json to be stale when userSetup.sh accesses it.

* fix: missing {} in sh variable

* fix: missing {} in sh variable

* fix regex for webproxy enabled (#2505)

* review nordvpn error exit messages + tests (#2518)

* Check for files existing instead of being executable #2459

* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

---------

Signed-off-by: Jonathan Sloan <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>

* Update master with latest dev fixes (#2579) (#2582)

* Quoute variables, fixes #2406 and #2418

* Fix sed busy (#2426)

* fix sed device or resource busy errors



* update info



* update docs



* log and fail if config is a mountpoint



* correct mountpoint check





* Fix fallback of transmission-home #2409

* Fix to use iptables-legacy rather than iptables-nft (#2456)

* Fix bug: the evironment file will be invalid (#2496)

something environment like:
`name=foo bar` 
will be invalid in the environment file, in a real example, it will be like `provider= SE Sto`.

Simply add change it to `provider="SE Sto"` will fix that.

* restart privoxy if docker changed eth0 address. (#2494)

* restart privoxy if docker changed eth0 address.

* sometimes, pidfile exists but process is dead

* Simplify RPC creds setup (#2480)

Reduce the complexity associated with creating RPC creds

* Fix bitwise decimal & octal (#2457)

* Fix bitwise decimal & octal

The issue is tracked here: #2450 (comment)

Also uses the TRASNMSISSION_UMASK variable instead of settings.json since updateSettings.py is called after userSetup.sh causing the TRANSMISSION_UMASK in settings.json to be stale when userSetup.sh accesses it.

* fix: missing {} in sh variable

* fix: missing {} in sh variable

* fix regex for webproxy enabled (#2505)

* review nordvpn error exit messages + tests (#2518)

* Check for files existing instead of being executable #2459

* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------



* Docs: add capabilities for Podman to tips&tricks (#2546)



* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------








* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------



* Docs: add capabilities for Podman to tips&tricks (#2546)



* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------








---------

Signed-off-by: Jonathan Sloan <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>

* Merge dev into master (#2583)

* Quoute variables, fixes #2406 and #2418

* Fix sed busy (#2426)

* fix sed device or resource busy errors

Signed-off-by: Jonathan Sloan <[email protected]>

* update info

Signed-off-by: Jonathan Sloan <[email protected]>

* update docs

Signed-off-by: Jonathan Sloan <[email protected]>

* log and fail if config is a mountpoint

Signed-off-by: Jonathan Sloan <[email protected]>

* correct mountpoint check

Signed-off-by: Jonathan Sloan <[email protected]>

Signed-off-by: Jonathan Sloan <[email protected]>

* Fix fallback of transmission-home #2409

* Fix to use iptables-legacy rather than iptables-nft (#2456)

* Fix bug: the evironment file will be invalid (#2496)

something environment like:
`name=foo bar` 
will be invalid in the environment file, in a real example, it will be like `provider= SE Sto`.

Simply add change it to `provider="SE Sto"` will fix that.

* restart privoxy if docker changed eth0 address. (#2494)

* restart privoxy if docker changed eth0 address.

* sometimes, pidfile exists but process is dead

* Simplify RPC creds setup (#2480)

Reduce the complexity associated with creating RPC creds

* Fix bitwise decimal & octal (#2457)

* Fix bitwise decimal & octal

The issue is tracked here: #2450 (comment)

Also uses the TRASNMSISSION_UMASK variable instead of settings.json since updateSettings.py is called after userSetup.sh causing the TRANSMISSION_UMASK in settings.json to be stale when userSetup.sh accesses it.

* fix: missing {} in sh variable

* fix: missing {} in sh variable

* fix regex for webproxy enabled (#2505)

* review nordvpn error exit messages + tests (#2518)

* Check for files existing instead of being executable #2459

* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------

Co-authored-by: Jonathan Fair <[email protected]>

* Docs: add capabilities for Podman to tips&tricks (#2546)

Co-authored-by: Tomas Vik <[email protected]>

* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>

* Update master with latest dev fixes (#2579) (#2582)

* Quoute variables, fixes #2406 and #2418

* Fix sed busy (#2426)

* fix sed device or resource busy errors



* update info



* update docs



* log and fail if config is a mountpoint



* correct mountpoint check





* Fix fallback of transmission-home #2409

* Fix to use iptables-legacy rather than iptables-nft (#2456)

* Fix bug: the evironment file will be invalid (#2496)

something environment like:
`name=foo bar` 
will be invalid in the environment file, in a real example, it will be like `provider= SE Sto`.

Simply add change it to `provider="SE Sto"` will fix that.

* restart privoxy if docker changed eth0 address. (#2494)

* restart privoxy if docker changed eth0 address.

* sometimes, pidfile exists but process is dead

* Simplify RPC creds setup (#2480)

Reduce the complexity associated with creating RPC creds

* Fix bitwise decimal & octal (#2457)

* Fix bitwise decimal & octal

The issue is tracked here: #2450 (comment)

Also uses the TRASNMSISSION_UMASK variable instead of settings.json since updateSettings.py is called after userSetup.sh causing the TRANSMISSION_UMASK in settings.json to be stale when userSetup.sh accesses it.

* fix: missing {} in sh variable

* fix: missing {} in sh variable

* fix regex for webproxy enabled (#2505)

* review nordvpn error exit messages + tests (#2518)

* Check for files existing instead of being executable #2459

* Bump docker/build-push-action from 3 to 4 (#2522)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* fix: Add quotes on generated variables to avoid braking with spaces (#2538)

This should fix #2406

* Fix crash in fetch-external-configs on unset vars (#2561)

* simple adjustments to "openvpn/modify-openvpn-config.sh" and "transmission/start.sh" that can make the verbosity of logging user-adjustable (#2564)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------



* Docs: add capabilities for Podman to tips&tricks (#2546)



* Change CONFIG_MOD_VERBOSITY usage

This change causes ${CONFIG_MOD_VERBOSITY} to become a variable used directly in the .ovpn config file.  The default value remains '3'.

* Insert ${TRANSMISSION_LOGGING} into exec'd command

This change allows for executing 'transmission-daemon' with '--log-level' set.  Utilizing a case-statement and forced lowercase, only valid values are accepted.  Default is no logging.

---------








* OVPN script fix for for 4.x branch  (#2566)

* Bump docker/build-push-action from 3 to 4 (#2534)

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...




* Socks5 example doc (#2541)

* fixing some heading sizes

* adding socks5-proxy example

---------



* Docs: add capabilities for Podman to tips&tricks (#2546)



* git instead of unzip

git instead of unzip

* Using GIT

GIT is used now instead of UNZIP due to issues suddenly experienced.

---------








---------

Signed-off-by: Jonathan Sloan <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>

---------

Signed-off-by: Jonathan Sloan <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Jonathan Sloan <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JtMotoX <[email protected]>
Co-authored-by: Jonathan Fair <[email protected]>
Co-authored-by: Tomas Vik <[email protected]>
Co-authored-by: Jayson Reis <[email protected]>
Co-authored-by: Chad <[email protected]>
Co-authored-by: phesster <[email protected]>
Co-authored-by: Kristian Haugene <[email protected]>
Co-authored-by: Derek Gordon <[email protected]>
Co-authored-by: Jonathan Sloan <[email protected]>
Co-authored-by: Robert Szynal <[email protected]>
Co-authored-by: Jiangqiu Shen <[email protected]>
Co-authored-by: edgd1er <[email protected]>
Co-authored-by: Colin Hebert <[email protected]>
Co-authored-by: J.P. Hutchins <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
inactivity Used by Stale bot to mark issues that will be closed
Projects
None yet
Development

No branches or pull requests

2 participants