From 34f74ef5a34f872996dbb8612b89adb58ca798fa Mon Sep 17 00:00:00 2001 From: root Date: Sun, 25 May 2025 11:27:27 +0000 Subject: [PATCH] Bugfix --- filebrowser/docker-compose.yaml | 1 + filebrowser/removeusers.txt | 0 gui/main.sh | 8 ++++---- 3 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 filebrowser/removeusers.txt diff --git a/filebrowser/docker-compose.yaml b/filebrowser/docker-compose.yaml index 875ac9c..f9a2c6f 100644 --- a/filebrowser/docker-compose.yaml +++ b/filebrowser/docker-compose.yaml @@ -11,6 +11,7 @@ services: - /selfhosting/apps/smb_utilities/filebrowser/settings.json:/config/settings.json #Change to match your directory - /selfhosting/apps/smb_utilities/filebrowser/start.sh:/start.sh - /selfhosting/apps/smb_utilities/filebrowser/addusers.txt:/addusers.txt + - /selfhosting/apps/smb_utilities/filebrowser/removeusers.txt:/removeusers.txt environment: - PUID=$(id -u) - PGID=$(id -g) diff --git a/filebrowser/removeusers.txt b/filebrowser/removeusers.txt new file mode 100644 index 0000000..e69de29 diff --git a/gui/main.sh b/gui/main.sh index 055a4f0..cc30aa2 100755 --- a/gui/main.sh +++ b/gui/main.sh @@ -18,16 +18,16 @@ while true; do case $CHOICE in 1) - ./dialog_user_add.sh + bash $SMB_TOOLS_PATH/gui/dialog_user_add.sh ;; 2) - ./dialog_user_remove.sh + bash $SMB_TOOLS_PATH/gui/dialog_user_remove.sh ;; 3) - ./dialog_share_create.sh + bash $SMB_TOOLS_PATH/gui/dialog_share_create.sh ;; 4) - ./dialog_share_remove.sh + bash $SMB_TOOLS_PATH/gui/dialog_share_remove.sh ;; 5) break