chore: cleanup with precommon, fix chmod and shebang

This commit is contained in:
Kjeld Schouten 2023-11-30 11:56:37 +01:00
parent 17dedb7c33
commit 574021b5a4
5 changed files with 19 additions and 17 deletions

View File

@ -73,7 +73,7 @@ jobs:
- 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:

View File

@ -10,4 +10,4 @@ qBittorrent will fail to start if Gluetun is not configured for use with port fo
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.

View File

@ -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
``` ```

1
tools/cleanup.sh Normal file → Executable file
View File

@ -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")