mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-10 09:51:02 +01:00
update
This commit is contained in:
@@ -1,10 +0,0 @@
|
|||||||
{
|
|
||||||
"build_from": {
|
|
||||||
"aarch64": "lscr.io/linuxserver/sabnzb:arm64v8-latest",
|
|
||||||
"amd64": "lscr.io/linuxserver/sabnzb:amd64-latest",
|
|
||||||
"armv7": "lscr.io/linuxserver/sabnzb:arm32v7-latest"
|
|
||||||
},
|
|
||||||
"codenotary": {
|
|
||||||
"signer": "alexandrep.github@gmail.com"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -28,7 +28,7 @@ ENV S6_CMD_WAIT_FOR_SERVICES=1 \
|
|||||||
S6_SERVICES_GRACETIME=0
|
S6_SERVICES_GRACETIME=0
|
||||||
|
|
||||||
# Global LSIO modifications
|
# Global LSIO modifications
|
||||||
ARG CONFIGLOCATION="/config/addons_config/sabnzb"
|
ARG CONFIGLOCATION="/config/addons_config/sabnzbd"
|
||||||
# hadolint ignore=SC2015, SC2013, SC2086
|
# hadolint ignore=SC2015, SC2013, SC2086
|
||||||
RUN \
|
RUN \
|
||||||
# Avoid custom-init.d duplications
|
# Avoid custom-init.d duplications
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
# Home assistant add-on: sabnzb
|
# Home assistant add-on: sabnzbd
|
||||||
|
|
||||||
[![Donate][donation-badge]](https://www.buymeacoffee.com/alexbelgium)
|
[![Donate][donation-badge]](https://www.buymeacoffee.com/alexbelgium)
|
||||||
|
|
||||||

|

|
||||||

|

|
||||||

|

|
||||||
|
|
||||||
[](https://www.codacy.com/gh/alexbelgium/hassio-addons/dashboard?utm_source=github.com&utm_medium=referral&utm_content=alexbelgium/hassio-addons&utm_campaign=Badge_Grade)
|
[](https://www.codacy.com/gh/alexbelgium/hassio-addons/dashboard?utm_source=github.com&utm_medium=referral&utm_content=alexbelgium/hassio-addons&utm_campaign=Badge_Grade)
|
||||||
[](https://github.com/marketplace/actions/super-linter)
|
[](https://github.com/marketplace/actions/super-linter)
|
||||||
@@ -18,13 +18,13 @@ _Thanks to everyone having starred my repo! To star it click on the image below,
|
|||||||
|
|
||||||
## About
|
## About
|
||||||
|
|
||||||
[sabnzb](http://sabnzb.net/) is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources.
|
[sabnzbd](http://sabnzbd.net/) is a usenet downloader, written in C++ and designed with performance in mind to achieve maximum download speed by using very little system resources.
|
||||||
This addon is based on the docker image https://github.com/linuxserver/docker-sabnzb
|
This addon is based on the docker image https://github.com/linuxserver/docker-sabnzbd
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
Webui can be found at <http://your-ip:PORT>.
|
Webui can be found at <http://your-ip:PORT>.
|
||||||
The default username/password : login:sabnzb, password:tegbzn6789
|
The default username/password : login:sabnzbd, password:tegbzn6789
|
||||||
Configurations can be done through the app webUI, except for the following options
|
Configurations can be done through the app webUI, except for the following options
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
@@ -56,6 +56,6 @@ Create an issue on github
|
|||||||
|
|
||||||
## Illustration
|
## Illustration
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
[repository]: https://github.com/alexbelgium/hassio-addons
|
[repository]: https://github.com/alexbelgium/hassio-addons
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
#include <tunables/global>
|
#include <tunables/global>
|
||||||
|
|
||||||
profile sabnzb_addon flags=(attach_disconnected,mediate_deleted) {
|
profile sabnzbd_addon flags=(attach_disconnected,mediate_deleted) {
|
||||||
#include <abstractions/base>
|
#include <abstractions/base>
|
||||||
|
|
||||||
capability,
|
capability,
|
||||||
10
sabnzbd/build.json
Normal file
10
sabnzbd/build.json
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"build_from": {
|
||||||
|
"aarch64": "lscr.io/linuxserver/sabnzbd:arm64v8-latest",
|
||||||
|
"amd64": "lscr.io/linuxserver/sabnzbd:amd64-latest",
|
||||||
|
"armv7": "lscr.io/linuxserver/sabnzbd:arm32v7-latest"
|
||||||
|
},
|
||||||
|
"codenotary": {
|
||||||
|
"signer": "alexandrep.github@gmail.com"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
"media:rw",
|
"media:rw",
|
||||||
"config:rw"
|
"config:rw"
|
||||||
],
|
],
|
||||||
"name": "Sabnzb",
|
"name": "Sabnzbd",
|
||||||
"options": {
|
"options": {
|
||||||
"PGID": 0,
|
"PGID": 0,
|
||||||
"PUID": 0
|
"PUID": 0
|
||||||
@@ -78,7 +78,7 @@
|
|||||||
"localdisks": "str?",
|
"localdisks": "str?",
|
||||||
"networkdisks": "str?"
|
"networkdisks": "str?"
|
||||||
},
|
},
|
||||||
"slug": "sabnzb",
|
"slug": "sabnzbd",
|
||||||
"url": "https://github.com/alexbelgium/hassio-addons",
|
"url": "https://github.com/alexbelgium/hassio-addons",
|
||||||
"version": "test"
|
"version": "test"
|
||||||
}
|
}
|
||||||
|
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.4 KiB |
@@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/with-contenv bashio
|
#!/usr/bin/with-contenv bashio
|
||||||
# shellcheck shell=bash
|
# shellcheck shell=bash
|
||||||
|
|
||||||
slug=sabnzb
|
slug=sabnzbd
|
||||||
|
|
||||||
if [ ! -d /config/addons_config/$slug ]; then
|
if [ ! -d /config/addons_config/$slug ]; then
|
||||||
|
|
||||||
@@ -11,7 +11,7 @@ sed -i "s/%%port%%/${ingress_port}/g" /etc/nginx/servers/ingress.conf
|
|||||||
sed -i "s/%%interface%%/${ingress_interface}/g" /etc/nginx/servers/ingress.conf
|
sed -i "s/%%interface%%/${ingress_interface}/g" /etc/nginx/servers/ingress.conf
|
||||||
|
|
||||||
# Allows serving js
|
# Allows serving js
|
||||||
sed -i 's/<!-- %if-not-debug% -->/<!-- %if-not-debug% /g' /app/sabnzb/webui/index.html
|
sed -i 's/<!-- %if-not-debug% -->/<!-- %if-not-debug% /g' /app/sabnzbd/webui/index.html
|
||||||
sed -i 's/<!-- %end% -->/ %end% -->/g' /app/sabnzb/webui/index.html
|
sed -i 's/<!-- %end% -->/ %end% -->/g' /app/sabnzbd/webui/index.html
|
||||||
sed -i 's/<!-- %if-debug%/<!-- %if-debug% -->/g' /app/sabnzb/webui/index.html
|
sed -i 's/<!-- %if-debug%/<!-- %if-debug% -->/g' /app/sabnzbd/webui/index.html
|
||||||
sed -i 's/ %end% -->/<!-- %end% -->/g' /app/sabnzb/webui/index.html
|
sed -i 's/ %end% -->/<!-- %end% -->/g' /app/sabnzbd/webui/index.html
|
||||||
@@ -5,7 +5,7 @@ server {
|
|||||||
include /etc/nginx/includes/proxy_params.conf;
|
include /etc/nginx/includes/proxy_params.conf;
|
||||||
|
|
||||||
client_max_body_size 0;
|
client_max_body_size 0;
|
||||||
root /app/sabnzb/webui;
|
root /app/sabnzbd/webui;
|
||||||
index index.html index.htm index.php;
|
index index.html index.htm index.php;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
"github_fulltag": "true",
|
"github_fulltag": "true",
|
||||||
"last_update": "21-01-2023",
|
"last_update": "21-01-2023",
|
||||||
"repository": "alexbelgium/hassio-addons",
|
"repository": "alexbelgium/hassio-addons",
|
||||||
"slug": "sabnzb",
|
"slug": "sabnzbd",
|
||||||
"source": "github",
|
"source": "github",
|
||||||
"upstream_repo": "linuxserver/docker-sabnzb",
|
"upstream_repo": "linuxserver/docker-sabnzbd",
|
||||||
"upstream_version": "v21.1-ls138"
|
"upstream_version": "v21.1-ls138"
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user