Compare commits
73 Commits
72fecacbd2
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
acd60dbeb4 | ||
|
|
3b9d465ae4 | ||
|
|
edba879ba3 | ||
|
|
5098cb39cc | ||
|
|
4cbfe8b05f | ||
|
|
b6b03b7ec7 | ||
|
|
37bba6abff | ||
|
|
d16fbbcc85 | ||
|
|
dd69e0fbcc | ||
|
|
f4e712fb40 | ||
|
|
2d3ac51b1f | ||
|
|
d18a54c4f2 | ||
|
|
820f43f74c | ||
|
|
b70ccb6e4c | ||
|
|
a65790654e | ||
|
|
5c9813fb64 | ||
|
|
d79eb93b0b | ||
|
|
c41c3a4853 | ||
|
|
8bd1fba2bb | ||
|
|
491fe7d044 | ||
|
|
ce61f979e1 | ||
|
|
e18164f6f6 | ||
|
|
4487382823 | ||
|
|
3c393bec89 | ||
|
|
74372151be | ||
|
|
0b03b9fece | ||
|
|
c26bbe0f03 | ||
|
|
667afdabe2 | ||
|
|
f76c2545ea | ||
|
|
08f7c2a48f | ||
|
|
344ef81bf7 | ||
|
|
b6a9e9ba86 | ||
|
|
17cfa83619 | ||
|
|
f8ffaa65ed | ||
|
|
83de8acae7 | ||
|
|
a193c86b1e | ||
|
|
3bf357b62b | ||
|
|
45cef18bdf | ||
|
|
4f775d68bc | ||
|
|
1aad2ca792 | ||
|
|
23fa7fd556 | ||
|
|
494d7268d9 | ||
|
|
cb40c0d618 | ||
|
|
5fe3e36c66 | ||
|
|
2a6f6639a1 | ||
|
|
f2d9eda4d2 | ||
|
|
ab9ca84926 | ||
|
|
52e5b7836f | ||
|
|
3b79e49c0c | ||
|
|
b198d9c0c4 | ||
|
|
8d99bf16b5 | ||
|
|
f5a3844da5 | ||
|
|
e5e6fc5480 | ||
|
|
bb294402ca | ||
|
|
d012519c70 | ||
|
|
76d80e3286 | ||
|
|
413b0467ec | ||
|
|
7ef32c197e | ||
|
|
c257657155 | ||
|
|
521e121948 | ||
|
|
7cdd7d2f49 | ||
|
|
2634460f63 | ||
|
|
4b5ec738c0 | ||
|
|
6ca68bd22e | ||
|
|
2bf6d7c144 | ||
|
|
92ef631667 | ||
|
|
f256f5141f | ||
|
|
93784d40e4 | ||
|
|
d7150db9b5 | ||
|
|
8c95c9816e | ||
|
|
2c2f292b5f | ||
|
|
bacf376179 | ||
|
|
e59cef676a |
@@ -5,26 +5,26 @@ FROM ${BUILD_FROM}
|
|||||||
# Set shell
|
# Set shell
|
||||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||||
|
|
||||||
ENV VERSION 0.9.3
|
ENV VERSION 0.10.1
|
||||||
|
|
||||||
# Setup base
|
# Setup base
|
||||||
# hadolint ignore=DL3003
|
# hadolint ignore=DL3003
|
||||||
RUN \
|
RUN \
|
||||||
apk add --no-cache \
|
apk add --no-cache \
|
||||||
nginx=1.22.1-r0 \
|
nginx \
|
||||||
php8-curl=8.0.26-r0 \
|
php81-curl \
|
||||||
php8-fpm=8.0.26-r0 \
|
php81-fpm \
|
||||||
php8-mbstring=8.0.26-r0 \
|
php81-mbstring \
|
||||||
php8-xml=8.0.26-r0 \
|
php81-xml \
|
||||||
php8=8.0.26-r0 \
|
php81 \
|
||||||
php8-sqlite3=8.0.26-r0 \
|
php81-sqlite3 \
|
||||||
php8-pdo=8.0.26-r0 \
|
php81-pdo \
|
||||||
php8-pdo_mysql=8.0.26-r0 \
|
php81-pdo_mysql \
|
||||||
php8-pdo_sqlite=8.0.26-r0 \
|
php81-pdo_sqlite \
|
||||||
php8-session=8.0.26-r0 \
|
php81-session \
|
||||||
php8-dom=8.0.26-r0 \
|
php81-dom \
|
||||||
php8-xmlreader=8.0.26-r0 \
|
php81-xmlreader \
|
||||||
php8-xmlwriter=8.0.26-r0 \
|
php81-xmlwriter \
|
||||||
\
|
\
|
||||||
&& curl -Ls "https://github.com/sabre-io/Baikal/releases/download/$VERSION/baikal-$VERSION.zip" -o baikal-$VERSION.zip \
|
&& curl -Ls "https://github.com/sabre-io/Baikal/releases/download/$VERSION/baikal-$VERSION.zip" -o baikal-$VERSION.zip \
|
||||||
&& unzip -q baikal-$VERSION.zip -d /var/www/ \
|
&& unzip -q baikal-$VERSION.zip -d /var/www/ \
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
---
|
---
|
||||||
name: Baikal
|
name: Baikal
|
||||||
slug: baikal
|
slug: baikal
|
||||||
version: 0.9.3
|
version: 0.10.1
|
||||||
description: Baikal is a Cal and CardDAV server, based on sabre/dav, that includes an administrative interface for easy management.
|
description: Baikal is a Cal and CardDAV server, based on sabre/dav, that includes an administrative interface for easy management.
|
||||||
url: https://github.com/d-two/hassio-addons
|
url: https://github.com/d-two/hassio-addons
|
||||||
startup: application
|
startup: services
|
||||||
init: false
|
init: false
|
||||||
webui: "[PROTO:ssl]://[HOST]:[PORT:80]"
|
webui: "[PROTO:ssl]://[HOST]:[PORT:80]"
|
||||||
arch:
|
arch:
|
||||||
|
|||||||
@@ -5,4 +5,4 @@
|
|||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
bashio::log.info "Starting PHP-FPM..."
|
bashio::log.info "Starting PHP-FPM..."
|
||||||
|
|
||||||
exec php-fpm8 --nodaemonize
|
exec php-fpm81 --nodaemonize
|
||||||
|
|||||||
@@ -7,31 +7,33 @@ ARG OSCAM_VERSION
|
|||||||
RUN \
|
RUN \
|
||||||
echo "**** install build packages ****" && \
|
echo "**** install build packages ****" && \
|
||||||
apk add --no-cache --virtual=build-dependencies \
|
apk add --no-cache --virtual=build-dependencies \
|
||||||
gcc \
|
build-base \
|
||||||
g++ \
|
libdvbcsa-dev \
|
||||||
libusb-dev \
|
libusb-dev \
|
||||||
linux-headers \
|
linux-headers \
|
||||||
make \
|
|
||||||
openssl-dev \
|
openssl-dev \
|
||||||
pcsc-lite-dev \
|
pcsc-lite-dev \
|
||||||
subversion \
|
|
||||||
tar \
|
|
||||||
shadow && \
|
shadow && \
|
||||||
echo "**** install runtime packages ****" && \
|
echo "**** install runtime packages ****" && \
|
||||||
apk add --no-cache \
|
apk add --no-cache \
|
||||||
ccid \
|
ccid \
|
||||||
curl \
|
libdvbcsa \
|
||||||
libcrypto1.1 \
|
openssl \
|
||||||
libssl1.1 \
|
|
||||||
libusb \
|
libusb \
|
||||||
pcsc-lite \
|
pcsc-lite \
|
||||||
pcsc-lite-libs && \
|
pcsc-lite-libs && \
|
||||||
echo "**** compile oscam ****" && \
|
echo "**** compile oscam ****" && \
|
||||||
if [ -z ${OSCAM_VERSION+x} ]; then \
|
if [ -z ${OSCAM_VERSION+x} ]; then \
|
||||||
OSCAM_VERSION=$(svn info --show-item revision https://svn.streamboard.tv/oscam/trunk ); \
|
OSCAM_VERSION=$(curl -s https://git.streamboard.tv/api/v4/projects/11/repository/tags | jq -r '.[0].name'); \
|
||||||
fi && \
|
fi && \
|
||||||
svn checkout https://svn.streamboard.tv/oscam/trunk@${OSCAM_VERSION} /tmp/oscam-svn && \
|
mkdir -p /tmp/oscam && \
|
||||||
cd /tmp/oscam-svn && \
|
curl -o \
|
||||||
|
/tmp/oscam.tar.gz -L \
|
||||||
|
"https://git.streamboard.tv/common/oscam/-/archive/${OSCAM_VERSION}/oscam-${OSCAM_VERSION}.tar.gz" && \
|
||||||
|
tar xf \
|
||||||
|
/tmp/oscam.tar.gz -C \
|
||||||
|
/tmp/oscam --strip-components=1 && \
|
||||||
|
cd /tmp/oscam && \
|
||||||
./config.sh \
|
./config.sh \
|
||||||
--enable all \
|
--enable all \
|
||||||
--disable \
|
--disable \
|
||||||
@@ -58,7 +60,7 @@ RUN \
|
|||||||
/tmp/omnikey && \
|
/tmp/omnikey && \
|
||||||
curl -o \
|
curl -o \
|
||||||
/tmp/omnikey.tar.gz -L \
|
/tmp/omnikey.tar.gz -L \
|
||||||
"https://www3.hidglobal.com/sites/default/files/drivers/ifdokccid_linux_x86_64-v4.2.8.tar.gz" && \
|
"https://raw.githubusercontent.com/d-two/hassio-addons/main/oscam/ifdokccid_linux_x86_64-v4.2.8.tar.gz" && \
|
||||||
tar xzf \
|
tar xzf \
|
||||||
/tmp/omnikey.tar.gz -C \
|
/tmp/omnikey.tar.gz -C \
|
||||||
/tmp/omnikey --strip-components=2 && \
|
/tmp/omnikey --strip-components=2 && \
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
"description": "This add-on allows you to have a OSCAM-Server.",
|
"description": "This add-on allows you to have a OSCAM-Server.",
|
||||||
"arch": ["armv7", "aarch64", "amd64"],
|
"arch": ["armv7", "aarch64", "amd64"],
|
||||||
"startup": "application",
|
"startup": "application",
|
||||||
|
"webui": "http://[HOST]:[PORT:8888]",
|
||||||
"boot": "auto",
|
"boot": "auto",
|
||||||
"init": false,
|
"init": false,
|
||||||
"uart": true,
|
"uart": true,
|
||||||
|
|||||||
BIN
oscam/ifdokccid_linux_x86_64-v4.2.8.tar.gz
Normal file
BIN
oscam/ifdokccid_linux_x86_64-v4.2.8.tar.gz
Normal file
Binary file not shown.
@@ -46,7 +46,7 @@ FROM ${BUILD_FROM}
|
|||||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||||
|
|
||||||
# Copy binary from build container
|
# Copy binary from build container
|
||||||
COPY --from=builder /tmp/ps3netsrv-bin/ps3netsrv /usr/local/bin/ps3netsrv
|
COPY --from=builder /tmp/ps3netsrv-bin/ps3netsrv /bin/ps3netsrv
|
||||||
|
|
||||||
# Install runtime deps and add users
|
# Install runtime deps and add users
|
||||||
RUN \
|
RUN \
|
||||||
@@ -59,19 +59,13 @@ RUN \
|
|||||||
libstdc++ \
|
libstdc++ \
|
||||||
musl \
|
musl \
|
||||||
musl-utils \
|
musl-utils \
|
||||||
mbedtls && \
|
mbedtls
|
||||||
echo "Creating ps3netsrv user..." && \
|
|
||||||
useradd -u 1000 -U -M -s /bin/false ps3netsrv && \
|
|
||||||
usermod -G users ps3netsrv && \
|
|
||||||
mkdir -p /var/log/ps3netsrv && \
|
|
||||||
chown -R nobody:nogroup /var/log/ps3netsrv && \
|
|
||||||
echo "Cleaning up temp directory..." && \
|
|
||||||
rm -rf /tmp/*
|
|
||||||
|
|
||||||
# Add files
|
# Add files
|
||||||
COPY rootfs/ /
|
COPY rootfs/ /
|
||||||
|
|
||||||
# Corrects permissions for s6 v3
|
# Corrects permissions for s6 v3
|
||||||
|
RUN if [ -d /etc/cont-init.d ]; then chmod -R 755 /etc/cont-init.d; fi
|
||||||
RUN if [ -d /etc/s6-overlay ]; then chmod -R 755 /etc/s6-overlay; fi
|
RUN if [ -d /etc/s6-overlay ]; then chmod -R 755 /etc/s6-overlay; fi
|
||||||
|
|
||||||
# Build arguments
|
# Build arguments
|
||||||
@@ -90,11 +84,11 @@ LABEL \
|
|||||||
io.hass.arch="${BUILD_ARCH}" \
|
io.hass.arch="${BUILD_ARCH}" \
|
||||||
io.hass.type="addon" \
|
io.hass.type="addon" \
|
||||||
io.hass.version=${BUILD_VERSION} \
|
io.hass.version=${BUILD_VERSION} \
|
||||||
maintainer="Franck Nijhof <frenck@addons.community>" \
|
maintainer="D-Two <the.dtwo@gmail.com>" \
|
||||||
org.opencontainers.image.title="${BUILD_NAME}" \
|
org.opencontainers.image.title="${BUILD_NAME}" \
|
||||||
org.opencontainers.image.description="${BUILD_DESCRIPTION}" \
|
org.opencontainers.image.description="${BUILD_DESCRIPTION}" \
|
||||||
org.opencontainers.image.vendor="Home Assistant Community Add-ons" \
|
org.opencontainers.image.vendor="Home Assistant Community Add-ons" \
|
||||||
org.opencontainers.image.authors="Franck Nijhof <frenck@addons.community>" \
|
org.opencontainers.image.authors="D-Two <the.dtwo@gmail.com>" \
|
||||||
org.opencontainers.image.licenses="MIT" \
|
org.opencontainers.image.licenses="MIT" \
|
||||||
org.opencontainers.image.url="https://addons.community" \
|
org.opencontainers.image.url="https://addons.community" \
|
||||||
org.opencontainers.image.source="https://github.com/${BUILD_REPOSITORY}" \
|
org.opencontainers.image.source="https://github.com/${BUILD_REPOSITORY}" \
|
||||||
|
|||||||
@@ -20,7 +20,10 @@ The architectures supported by this image are:
|
|||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
|
|
||||||
- `media/ps3netsrv`: This location contains files from your host that need to be accessible by the application.
|
cifsdomain: workgroup (optional)
|
||||||
|
cifspassword: password
|
||||||
|
cifsusername: username
|
||||||
|
networkdisks: //192.168.137.100/path/to/games
|
||||||
|
|
||||||
### Ports
|
### Ports
|
||||||
|
|
||||||
|
|||||||
66
ps3netsrv/apparmor.txt
Normal file
66
ps3netsrv/apparmor.txt
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
#include <tunables/global>
|
||||||
|
|
||||||
|
profile ps3netserver_addon flags=(attach_disconnected,mediate_deleted) {
|
||||||
|
#include <abstractions/base>
|
||||||
|
|
||||||
|
capability,
|
||||||
|
file,
|
||||||
|
signal,
|
||||||
|
mount,
|
||||||
|
umount,
|
||||||
|
remount,
|
||||||
|
network udp,
|
||||||
|
network tcp,
|
||||||
|
network dgram,
|
||||||
|
network stream,
|
||||||
|
network inet,
|
||||||
|
network inet6,
|
||||||
|
network netlink raw,
|
||||||
|
network unix dgram,
|
||||||
|
|
||||||
|
capability setgid,
|
||||||
|
capability setuid,
|
||||||
|
capability sys_admin,
|
||||||
|
capability dac_read_search,
|
||||||
|
# capability dac_override,
|
||||||
|
# capability sys_rawio,
|
||||||
|
|
||||||
|
# S6-Overlay
|
||||||
|
/init ix,
|
||||||
|
/run/{s6,s6-rc*,service}/** ix,
|
||||||
|
/package/** ix,
|
||||||
|
/command/** ix,
|
||||||
|
/run/{,**} rwk,
|
||||||
|
/dev/tty rw,
|
||||||
|
/bin/** ix,
|
||||||
|
/usr/bin/** ix,
|
||||||
|
/usr/lib/bashio/** ix,
|
||||||
|
/etc/s6/** rix,
|
||||||
|
/run/s6/** rix,
|
||||||
|
/etc/services.d/** rwix,
|
||||||
|
/etc/cont-init.d/** rwix,
|
||||||
|
/etc/cont-finish.d/** rwix,
|
||||||
|
/init rix,
|
||||||
|
/var/run/** mrwkl,
|
||||||
|
/var/run/ mrwkl,
|
||||||
|
/dev/i2c-1 mrwkl,
|
||||||
|
# Files required
|
||||||
|
/dev/fuse mrwkl,
|
||||||
|
/dev/sda1 mrwkl,
|
||||||
|
/dev/sdb1 mrwkl,
|
||||||
|
/dev/nvme0 mrwkl,
|
||||||
|
/dev/nvme1 mrwkl,
|
||||||
|
/dev/mmcblk0p1 mrwkl,
|
||||||
|
/dev/* mrwkl,
|
||||||
|
/tmp/** mrkwl,
|
||||||
|
|
||||||
|
# Data access
|
||||||
|
/data/** rw,
|
||||||
|
|
||||||
|
# suppress ptrace denials when using 'docker ps' or using 'ps' inside a container
|
||||||
|
ptrace (trace,read) peer=docker-default,
|
||||||
|
|
||||||
|
# docker daemon confinement requires explict allow rule for signal
|
||||||
|
signal (receive) set=(kill,term) peer=/usr/bin/docker,
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
name: Ps3NetServer
|
name: Ps3NetServer
|
||||||
slug: ps3netserver
|
slug: ps3netserver
|
||||||
version: 0.1.0
|
version: 0.1.3-NAS
|
||||||
description: This is a Docker container for ps3netsrv (or ps3netsvr).
|
description: This is a Docker container for ps3netsrv (or ps3netsvr).
|
||||||
url: https://github.com/d-two/hassio-addons/tree/main/ps3netsrv
|
url: https://github.com/d-two/hassio-addons/tree/main/ps3netsrv
|
||||||
startup: application
|
startup: application
|
||||||
@@ -13,9 +13,15 @@ arch:
|
|||||||
- armv7
|
- armv7
|
||||||
- i386
|
- i386
|
||||||
boot: auto
|
boot: auto
|
||||||
map:
|
|
||||||
- media:rw
|
|
||||||
ports:
|
ports:
|
||||||
38008/tcp: 38008
|
38008/tcp: 38008
|
||||||
ports_description:
|
ports_description:
|
||||||
38008/tcp: Network port
|
38008/tcp: Network port
|
||||||
|
privileged:
|
||||||
|
- SYS_ADMIN
|
||||||
|
- DAC_READ_SEARCH
|
||||||
|
schema:
|
||||||
|
cifsdomain: str?
|
||||||
|
cifspassword: str
|
||||||
|
cifsusername: str
|
||||||
|
networkdisks: str
|
||||||
|
|||||||
151
ps3netsrv/rootfs/etc/cont-init.d/00_smb
Normal file
151
ps3netsrv/rootfs/etc/cont-init.d/00_smb
Normal file
@@ -0,0 +1,151 @@
|
|||||||
|
#!/command/with-contenv bashio
|
||||||
|
# shellcheck shell=bash
|
||||||
|
# shellcheck disable=
|
||||||
|
|
||||||
|
#########################
|
||||||
|
# MOUNT SMB SHARES v1.6 #
|
||||||
|
#########################
|
||||||
|
if bashio::config.has_value 'networkdisks'; then
|
||||||
|
|
||||||
|
# Define variables
|
||||||
|
MOREDISKS=$(bashio::config 'networkdisks')
|
||||||
|
CIFS_USERNAME=$(bashio::config 'cifsusername')
|
||||||
|
CIFS_PASSWORD=$(bashio::config 'cifspassword')
|
||||||
|
|
||||||
|
SMBVERS=""
|
||||||
|
SECVERS=""
|
||||||
|
|
||||||
|
# Mount CIFS Share if configured and if Protection Mode is active
|
||||||
|
echo 'Mounting smb share(s)...'
|
||||||
|
|
||||||
|
if bashio::config.has_value 'cifsdomain'; then
|
||||||
|
echo "Using domain $(bashio::config 'cifsdomain')"
|
||||||
|
DOMAIN=",domain=$(bashio::config 'cifsdomain')"
|
||||||
|
else
|
||||||
|
DOMAIN=""
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Mount using UID/GID values
|
||||||
|
if bashio::config.has_value 'PUID' && bashio::config.has_value 'PGID' && [ -z ${ROOTMOUNT+x} ]; then
|
||||||
|
echo "Using PUID $(bashio::config 'PUID') and PGID $(bashio::config 'PGID')"
|
||||||
|
PUID=",uid=$(bashio::config 'PUID')"
|
||||||
|
PGID=",gid=$(bashio::config 'PGID')"
|
||||||
|
else
|
||||||
|
PUID=",uid=$(id -u)"
|
||||||
|
PGID=",gid=$(id -g)"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Clean data
|
||||||
|
MOREDISKS=${MOREDISKS// \/\//,\/\/}
|
||||||
|
MOREDISKS=${MOREDISKS//, /,}
|
||||||
|
MOREDISKS=${MOREDISKS// /"\040"}
|
||||||
|
|
||||||
|
# Mounting disks
|
||||||
|
# shellcheck disable=SC2086
|
||||||
|
for disk in ${MOREDISKS//,/ }; do # Separate comma separated values
|
||||||
|
|
||||||
|
# Clean name of network share
|
||||||
|
# shellcheck disable=SC2116,SC2001
|
||||||
|
disk=$(echo $disk | sed "s,/$,,") # Remove / at end of name
|
||||||
|
disk="${disk//"\040"/ }" #replace \040 with
|
||||||
|
diskname="${disk//\\//}" #replace \ with /
|
||||||
|
diskname="${diskname##*/}" # Get only last part of the name
|
||||||
|
MOUNTED=false
|
||||||
|
|
||||||
|
# Data validation
|
||||||
|
if [[ ! $disk =~ ^.*+[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+[/]+.*+$ ]]; then
|
||||||
|
bashio::log.fatal "The structure of your \"networkdisks\" option : \"$disk\" doesn't seem correct, please use a structure like //123.12.12.12/sharedfolder,//123.12.12.12/sharedfolder2. If you don't use it, you can simply remove the text, this will avoid this error message in the future."
|
||||||
|
break 2
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Does server exists
|
||||||
|
server="$(echo "$disk" | grep -E -o "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+")"
|
||||||
|
if ping -w 1 -c 1 8.8.8.8 >/dev/null; then
|
||||||
|
ping -w 5 -c 1 "$server" >/dev/null || \
|
||||||
|
{ bashio::log.fatal "Your server $server from $disk doesn't ping, is it correct?"; break 2; }
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Prepare mount point
|
||||||
|
mkdir -p /mnt/"$diskname"
|
||||||
|
chown -R root:root /mnt/"$diskname"
|
||||||
|
|
||||||
|
# if Fail test different smb and sec versions
|
||||||
|
if [ "$MOUNTED" = false ]; then
|
||||||
|
|
||||||
|
# Test with domain, remove otherwise
|
||||||
|
####################################
|
||||||
|
for DOMAINVAR in "$DOMAIN" ",domain=WORKGROUP" ""; do
|
||||||
|
|
||||||
|
# Test with PUIDPGID, remove otherwise
|
||||||
|
######################################
|
||||||
|
for PUIDPGID in "$PUID$PGID" "$PUID$PGID,forceuid,forcegid" ""; do
|
||||||
|
|
||||||
|
# Test with iocharset utf8, remove otherwise
|
||||||
|
############################################
|
||||||
|
for CHARSET in ",iocharset=utf8" ""; do
|
||||||
|
|
||||||
|
# Test with different SMB versions
|
||||||
|
##################################
|
||||||
|
for SMBVERS in "" ",vers=3" ",vers=1.0" ",vers=2.1" ",vers=3.0" ",nodfs"; do
|
||||||
|
|
||||||
|
# Test with different security versions
|
||||||
|
#######################################
|
||||||
|
for SECVERS in "" ",sec=ntlm" ",sec=ntlmv2" ",sec=ntlmv2i" ",sec=ntlmssp" ",sec=ntlmsspi" ",sec=krb5i" ",sec=krb5"; do
|
||||||
|
if [ "$MOUNTED" = false ]; then
|
||||||
|
mount -t cifs -o "rw,file_mode=0775,dir_mode=0775,username=$CIFS_USERNAME,password=${CIFS_PASSWORD},nobrl$SMBVERS$SECVERS$PUIDPGID$CHARSET$DOMAINVAR" "$disk" /mnt/"$diskname" 2>ERRORCODE \
|
||||||
|
&& MOUNTED=true && MOUNTOPTIONS="$SMBVERS$SECVERS$PUIDPGID$CHARSET$DOMAINVAR" || MOUNTED=false
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
done
|
||||||
|
|
||||||
|
done
|
||||||
|
|
||||||
|
done
|
||||||
|
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Messages
|
||||||
|
if [ "$MOUNTED" = true ] && mountpoint -q /mnt/"$diskname"; then
|
||||||
|
#Test write permissions
|
||||||
|
# shellcheck disable=SC2015
|
||||||
|
touch "/mnt/$diskname/testaze" && rm "/mnt/$diskname/testaze" &&
|
||||||
|
bashio::log.info "... $disk successfully mounted to /mnt/$diskname with options $MOUNTOPTIONS" ||
|
||||||
|
bashio::log.fatal "Disk is mounted, however unable to write in the shared disk. Please check UID/GID for permissions, and if the share is rw"
|
||||||
|
|
||||||
|
# Test for serverino
|
||||||
|
# shellcheck disable=SC2015
|
||||||
|
touch "/mnt/$diskname/testaze" && mv "/mnt/$diskname/testaze" "/mnt/$diskname/testaze2" && rm "/mnt/$diskname/testaze2" ||
|
||||||
|
(umount "/mnt/$diskname" && mount -t cifs -o "iocharset=utf8,rw,file_mode=0775,dir_mode=0775,username=$CIFS_USERNAME,password=${CIFS_PASSWORD}$MOUNTOPTIONS,noserverino" "$disk" /mnt/"$diskname" && bashio::log.warning "noserverino option used")
|
||||||
|
|
||||||
|
else
|
||||||
|
# Mounting failed messages
|
||||||
|
bashio::log.fatal "Error, unable to mount $disk to /mnt/$diskname with username $CIFS_USERNAME, $CIFS_PASSWORD. Please check your remote share path, username, password, domain, try putting 0 in UID and GID"
|
||||||
|
bashio::log.fatal "Here is some debugging info :"
|
||||||
|
|
||||||
|
# Download smbclient
|
||||||
|
if command -v "apk" &>/dev/null; then apk add --no-cache samba-client &>/dev/null; fi
|
||||||
|
if command -v "apt" &>/dev/null; then apt-get install smbclient &>/dev/null; fi
|
||||||
|
if command -v "pacman" &>/dev/null; then pacman -S smbclient; fi
|
||||||
|
|
||||||
|
# Provide debugging info
|
||||||
|
smbclient -L $disk -U "$CIFS_USERNAME%$CIFS_PASSWORD" || true
|
||||||
|
|
||||||
|
# Error code
|
||||||
|
mount -t cifs -o "rw,file_mode=0775,dir_mode=0775,username=$CIFS_USERNAME,password=${CIFS_PASSWORD},nobrl$DOMAINVAR" "$disk" /mnt/"$diskname" 2>ERRORCODE || MOUNTED=false
|
||||||
|
bashio::log.fatal "Error read : $(<ERRORCODE)"
|
||||||
|
rm ERRORCODE*
|
||||||
|
|
||||||
|
# clean folder
|
||||||
|
umount "/mnt/$diskname" 2>/dev/null || true
|
||||||
|
rmdir "/mnt/$diskname" || true
|
||||||
|
fi
|
||||||
|
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ -f ERRORCODE ]; then
|
||||||
|
rm ERRORCODE*
|
||||||
|
fi
|
||||||
|
|
||||||
|
fi
|
||||||
@@ -1,20 +1,20 @@
|
|||||||
#!/command/with-contenv bashio
|
#!/command/with-contenv bashio
|
||||||
# shellcheck shell=bash
|
# shellcheck shell=bash
|
||||||
|
|
||||||
USER_ID=${USER_ID:-1000}
|
USER_ID=${USER_ID:-0}
|
||||||
GROUP_ID=${GROUP_ID:-1000}
|
GROUP_ID=${GROUP_ID:-0}
|
||||||
|
|
||||||
groupmod -o -g "$GROUP_ID" ps3netsrv
|
#groupmod -o -g "$GROUP_ID" ps3netsrv
|
||||||
usermod -o -u "$USER_ID" ps3netsrv
|
#usermod -o -u "$USER_ID" ps3netsrv
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
-------------------------------------
|
-------------------------------------
|
||||||
GID/UID
|
GID/UID
|
||||||
-------------------------------------'
|
-------------------------------------'
|
||||||
echo "
|
echo "
|
||||||
User uid: $(id -u ps3netsrv)
|
User uid: $(id -u ${USER_ID})
|
||||||
User gid: $(id -g ps3netsrv)
|
User gid: $(id -g ${GROUP_ID})
|
||||||
-------------------------------------
|
-------------------------------------
|
||||||
"
|
"
|
||||||
|
|
||||||
mkdir -p /media/ps3netsrv
|
#mkdir -p /media/ps3netsrv
|
||||||
|
|||||||
@@ -5,5 +5,29 @@
|
|||||||
# Runs the ps3netsrv
|
# Runs the ps3netsrv
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
|
|
||||||
bashio::log.info "Starting Ps3NetSrv...."
|
if bashio::config.has_value 'networkdisks'; then
|
||||||
/usr/local/bin/ps3netsrv /media/ps3netsrv
|
|
||||||
|
# Define variables
|
||||||
|
MOREDISKS=$(bashio::config 'networkdisks')
|
||||||
|
|
||||||
|
# Clean data
|
||||||
|
MOREDISKS=${MOREDISKS// \/\//,\/\/}
|
||||||
|
MOREDISKS=${MOREDISKS//, /,}
|
||||||
|
MOREDISKS=${MOREDISKS// /"\040"}
|
||||||
|
|
||||||
|
# Mounting disks
|
||||||
|
# shellcheck disable=SC2086
|
||||||
|
for disk in ${MOREDISKS//,/ }; do # Separate comma separated values
|
||||||
|
|
||||||
|
# Clean name of network share
|
||||||
|
# shellcheck disable=SC2116,SC2001
|
||||||
|
disk=$(echo $disk | sed "s,/$,,") # Remove / at end of name
|
||||||
|
disk="${disk//"\040"/ }" #replace \040 with
|
||||||
|
diskname="${disk//\\//}" #replace \ with /
|
||||||
|
diskname="${diskname##*/}" # Get only last part of the name
|
||||||
|
|
||||||
|
bashio::log.info "Starting Ps3NetSrv.... ($diskname)"
|
||||||
|
exec ps3netsrv /mnt/"$diskname"
|
||||||
|
break
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|||||||
@@ -13,11 +13,13 @@ ENV HOME="/config"
|
|||||||
# copy patches
|
# copy patches
|
||||||
COPY patches/ /tmp/patches/
|
COPY patches/ /tmp/patches/
|
||||||
|
|
||||||
|
RUN apk add --no-cache musl=1.2.2-r9
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
echo "**** install build packages ****" && \
|
echo "**** install build packages ****" && \
|
||||||
apk add --no-cache \
|
apk add --no-cache \
|
||||||
libcrypto1.1=1.1.1t-r1 \
|
libcrypto1.1 \
|
||||||
libssl1.1=1.1.1t-r1 \
|
libssl1.1 \
|
||||||
autoconf \
|
autoconf \
|
||||||
automake \
|
automake \
|
||||||
bsd-compat-headers \
|
bsd-compat-headers \
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
#!/usr/bin/with-contenv bash
|
|
||||||
|
|
||||||
FILES=$(find /dev/dri /dev/dvb -type c -print 2>/dev/null)
|
|
||||||
|
|
||||||
for i in $FILES
|
|
||||||
do
|
|
||||||
VIDEO_GID=$(stat -c '%g' "$i")
|
|
||||||
if id -G abc | grep -qw "$VIDEO_GID"; then
|
|
||||||
touch /groupadd
|
|
||||||
else
|
|
||||||
if [ ! "${VIDEO_GID}" == '0' ]; then
|
|
||||||
VIDEO_NAME=$(getent group "${VIDEO_GID}" | awk -F: '{print $1}')
|
|
||||||
if [ -z "${VIDEO_NAME}" ]; then
|
|
||||||
VIDEO_NAME="video$(head /dev/urandom | tr -dc 'a-z0-9' | head -c8)"
|
|
||||||
groupadd "$VIDEO_NAME"
|
|
||||||
groupmod -g "$VIDEO_GID" "$VIDEO_NAME"
|
|
||||||
fi
|
|
||||||
usermod -a -G "$VIDEO_NAME" abc
|
|
||||||
touch /groupadd
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ -n "${FILES}" ] && [ ! -f "/groupadd" ]; then
|
|
||||||
usermod -a -G root abc
|
|
||||||
fi
|
|
||||||
Reference in New Issue
Block a user