chore: cleanup with precommon, fix chmod and shebang
This commit is contained in:
parent
17dedb7c33
commit
574021b5a4
|
@ -72,8 +72,8 @@ jobs:
|
||||||
- catalog-test
|
- catalog-test
|
||||||
- charts-test
|
- charts-test
|
||||||
- charts-lint
|
- charts-lint
|
||||||
- print_head_msg
|
- print_head_msg
|
||||||
if: ${{ contains( needs.print_head_msg.outputs.head-commit-message, 'update container image' ) }}
|
if: ${{ contains( needs.print_head_msg.outputs.head-commit-message, 'update container image' ) }}
|
||||||
name: Automerge and Approve build
|
name: Automerge and Approve build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
|
@ -244,4 +244,4 @@ questions:
|
||||||
# Include{codeserver}
|
# Include{codeserver}
|
||||||
# Include{netshoot}
|
# Include{netshoot}
|
||||||
# Include{vpn}
|
# Include{vpn}
|
||||||
# Include{documentation}
|
# Include{documentation}
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
# Automatic Gluetun Port Forwarding
|
# Automatic Gluetun Port Forwarding
|
||||||
|
|
||||||
qBittorrent can be configured to automatically utilize the VPN forward port when used with Gluetun.
|
qBittorrent can be configured to automatically utilize the VPN forward port when used with Gluetun.
|
||||||
|
|
||||||
:::danger GLUETUN PORT FORWARDING REQUIRED
|
:::danger GLUETUN PORT FORWARDING REQUIRED
|
||||||
|
|
||||||
qBittorrent will fail to start if Gluetun is not configured for use with port forwarding enabled.
|
qBittorrent will fail to start if Gluetun is not configured for use with port forwarding enabled.
|
||||||
|
|
||||||
:::
|
:::
|
||||||
|
|
||||||
To enable automatic port forwarding check the box `Gluetun Port Forwarding` in the qBittorrent App Configuration section.
|
To enable automatic port forwarding check the box `Gluetun Port Forwarding` in the qBittorrent App Configuration section.
|
||||||
|
|
||||||
You are required to provide the qBittorrent WebUI username and password. Because of this requirement you *CANNOT* enable this feature until you have completed the installation of qBittorrent and configured the WebUI username and password in the qBittorrent settings first.
|
You are required to provide the qBittorrent WebUI username and password. Because of this requirement you _CANNOT_ enable this feature until you have completed the installation of qBittorrent and configured the WebUI username and password in the qBittorrent settings first.
|
||||||
|
|
|
@ -64,6 +64,7 @@ So I'm downloading the theme from https://github.com/mrliptontea/PurpleMine2
|
||||||
And Unzip it to my SMB share folder.
|
And Unzip it to my SMB share folder.
|
||||||
|
|
||||||
Now in TrueNas shell I use
|
Now in TrueNas shell I use
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo mc
|
sudo mc
|
||||||
```
|
```
|
||||||
|
@ -91,7 +92,7 @@ Chage the owner of the files with the following command
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo chown -R root:apps PurpleMine2-master
|
sudo chown -R root:apps PurpleMine2-master
|
||||||
sudo chmod -R 775 PurpleMine2-master
|
sudo chmod -R 775 PurpleMine2-master
|
||||||
```
|
```
|
||||||
|
|
||||||
Repeat this commands for every theme folder you copied. And double check that owner have been changed and the permissions applied
|
Repeat this commands for every theme folder you copied. And double check that owner have been changed and the permissions applied
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
tag=$1
|
tag=$1
|
||||||
|
|
||||||
tag=$(echo $tag | sed "s/@.*//g") # Strip everything after '@' (e.g., "v1.2.3@sha256:abc123" -> "v1.2.3")
|
tag=$(echo $tag | sed "s/@.*//g") # Strip everything after '@' (e.g., "v1.2.3@sha256:abc123" -> "v1.2.3")
|
||||||
|
|
Loading…
Reference in New Issue