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
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
|
||||
ENV VERSION 0.9.3
|
||||
ENV VERSION 0.10.1
|
||||
|
||||
# Setup base
|
||||
# hadolint ignore=DL3003
|
||||
RUN \
|
||||
apk add --no-cache \
|
||||
nginx=1.22.1-r0 \
|
||||
php8-curl=8.0.26-r0 \
|
||||
php8-fpm=8.0.26-r0 \
|
||||
php8-mbstring=8.0.26-r0 \
|
||||
php8-xml=8.0.26-r0 \
|
||||
php8=8.0.26-r0 \
|
||||
php8-sqlite3=8.0.26-r0 \
|
||||
php8-pdo=8.0.26-r0 \
|
||||
php8-pdo_mysql=8.0.26-r0 \
|
||||
php8-pdo_sqlite=8.0.26-r0 \
|
||||
php8-session=8.0.26-r0 \
|
||||
php8-dom=8.0.26-r0 \
|
||||
php8-xmlreader=8.0.26-r0 \
|
||||
php8-xmlwriter=8.0.26-r0 \
|
||||
nginx \
|
||||
php81-curl \
|
||||
php81-fpm \
|
||||
php81-mbstring \
|
||||
php81-xml \
|
||||
php81 \
|
||||
php81-sqlite3 \
|
||||
php81-pdo \
|
||||
php81-pdo_mysql \
|
||||
php81-pdo_sqlite \
|
||||
php81-session \
|
||||
php81-dom \
|
||||
php81-xmlreader \
|
||||
php81-xmlwriter \
|
||||
\
|
||||
&& 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/ \
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
---
|
||||
name: 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.
|
||||
url: https://github.com/d-two/hassio-addons
|
||||
startup: application
|
||||
startup: services
|
||||
init: false
|
||||
webui: "[PROTO:ssl]://[HOST]:[PORT:80]"
|
||||
arch:
|
||||
|
||||
@@ -5,4 +5,4 @@
|
||||
# ==============================================================================
|
||||
bashio::log.info "Starting PHP-FPM..."
|
||||
|
||||
exec php-fpm8 --nodaemonize
|
||||
exec php-fpm81 --nodaemonize
|
||||
|
||||
@@ -7,31 +7,33 @@ ARG OSCAM_VERSION
|
||||
RUN \
|
||||
echo "**** install build packages ****" && \
|
||||
apk add --no-cache --virtual=build-dependencies \
|
||||
gcc \
|
||||
g++ \
|
||||
build-base \
|
||||
libdvbcsa-dev \
|
||||
libusb-dev \
|
||||
linux-headers \
|
||||
make \
|
||||
openssl-dev \
|
||||
pcsc-lite-dev \
|
||||
subversion \
|
||||
tar \
|
||||
shadow && \
|
||||
echo "**** install runtime packages ****" && \
|
||||
apk add --no-cache \
|
||||
ccid \
|
||||
curl \
|
||||
libcrypto1.1 \
|
||||
libssl1.1 \
|
||||
libdvbcsa \
|
||||
openssl \
|
||||
libusb \
|
||||
pcsc-lite \
|
||||
pcsc-lite-libs && \
|
||||
echo "**** compile oscam ****" && \
|
||||
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 && \
|
||||
svn checkout https://svn.streamboard.tv/oscam/trunk@${OSCAM_VERSION} /tmp/oscam-svn && \
|
||||
cd /tmp/oscam-svn && \
|
||||
mkdir -p /tmp/oscam && \
|
||||
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 \
|
||||
--enable all \
|
||||
--disable \
|
||||
@@ -58,7 +60,7 @@ RUN \
|
||||
/tmp/omnikey && \
|
||||
curl -o \
|
||||
/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 \
|
||||
/tmp/omnikey.tar.gz -C \
|
||||
/tmp/omnikey --strip-components=2 && \
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
"description": "This add-on allows you to have a OSCAM-Server.",
|
||||
"arch": ["armv7", "aarch64", "amd64"],
|
||||
"startup": "application",
|
||||
"webui": "http://[HOST]:[PORT:8888]",
|
||||
"boot": "auto",
|
||||
"init": false,
|
||||
"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"]
|
||||
|
||||
# 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
|
||||
RUN \
|
||||
@@ -59,19 +59,13 @@ RUN \
|
||||
libstdc++ \
|
||||
musl \
|
||||
musl-utils \
|
||||
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/*
|
||||
mbedtls
|
||||
|
||||
# Add files
|
||||
COPY rootfs/ /
|
||||
|
||||
# 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
|
||||
|
||||
# Build arguments
|
||||
@@ -90,11 +84,11 @@ LABEL \
|
||||
io.hass.arch="${BUILD_ARCH}" \
|
||||
io.hass.type="addon" \
|
||||
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.description="${BUILD_DESCRIPTION}" \
|
||||
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.url="https://addons.community" \
|
||||
org.opencontainers.image.source="https://github.com/${BUILD_REPOSITORY}" \
|
||||
|
||||
@@ -20,7 +20,10 @@ The architectures supported by this image are:
|
||||
|
||||
## 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
|
||||
|
||||
|
||||
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
|
||||
slug: ps3netserver
|
||||
version: 0.1.0
|
||||
version: 0.1.3-NAS
|
||||
description: This is a Docker container for ps3netsrv (or ps3netsvr).
|
||||
url: https://github.com/d-two/hassio-addons/tree/main/ps3netsrv
|
||||
startup: application
|
||||
@@ -13,9 +13,15 @@ arch:
|
||||
- armv7
|
||||
- i386
|
||||
boot: auto
|
||||
map:
|
||||
- media:rw
|
||||
ports:
|
||||
38008/tcp: 38008
|
||||
ports_description:
|
||||
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
|
||||
# shellcheck shell=bash
|
||||
|
||||
USER_ID=${USER_ID:-1000}
|
||||
GROUP_ID=${GROUP_ID:-1000}
|
||||
USER_ID=${USER_ID:-0}
|
||||
GROUP_ID=${GROUP_ID:-0}
|
||||
|
||||
groupmod -o -g "$GROUP_ID" ps3netsrv
|
||||
usermod -o -u "$USER_ID" ps3netsrv
|
||||
#groupmod -o -g "$GROUP_ID" ps3netsrv
|
||||
#usermod -o -u "$USER_ID" ps3netsrv
|
||||
|
||||
echo '
|
||||
-------------------------------------
|
||||
GID/UID
|
||||
-------------------------------------'
|
||||
echo "
|
||||
User uid: $(id -u ps3netsrv)
|
||||
User gid: $(id -g ps3netsrv)
|
||||
User uid: $(id -u ${USER_ID})
|
||||
User gid: $(id -g ${GROUP_ID})
|
||||
-------------------------------------
|
||||
"
|
||||
|
||||
mkdir -p /media/ps3netsrv
|
||||
#mkdir -p /media/ps3netsrv
|
||||
|
||||
@@ -5,5 +5,29 @@
|
||||
# Runs the ps3netsrv
|
||||
# ==============================================================================
|
||||
|
||||
bashio::log.info "Starting Ps3NetSrv...."
|
||||
/usr/local/bin/ps3netsrv /media/ps3netsrv
|
||||
if bashio::config.has_value 'networkdisks'; then
|
||||
|
||||
# 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/ /tmp/patches/
|
||||
|
||||
RUN apk add --no-cache musl=1.2.2-r9
|
||||
|
||||
RUN \
|
||||
echo "**** install build packages ****" && \
|
||||
apk add --no-cache \
|
||||
libcrypto1.1=1.1.1t-r1 \
|
||||
libssl1.1=1.1.1t-r1 \
|
||||
libcrypto1.1 \
|
||||
libssl1.1 \
|
||||
autoconf \
|
||||
automake \
|
||||
bsd-compat-headers \
|
||||
@@ -194,4 +196,4 @@ LABEL \
|
||||
org.opencontainers.image.documentation="https://github.com/${BUILD_REPOSITORY}/blob/main/README.md" \
|
||||
org.opencontainers.image.created=${BUILD_DATE} \
|
||||
org.opencontainers.image.revision=${BUILD_REF} \
|
||||
org.opencontainers.image.version=${BUILD_VERSION}
|
||||
org.opencontainers.image.version=${BUILD_VERSION}
|
||||
|
||||
@@ -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