diff --git a/dist/adastra-vtl-installer-1.0.0.tar.gz b/dist/adastra-vtl-installer-1.0.0.tar.gz index 31b15ec..7ec8a62 100644 Binary files a/dist/adastra-vtl-installer-1.0.0.tar.gz and b/dist/adastra-vtl-installer-1.0.0.tar.gz differ diff --git a/dist/adastra-vtl-installer/VERSION b/dist/adastra-vtl-installer/VERSION index f7ef25a..788c46e 100644 --- a/dist/adastra-vtl-installer/VERSION +++ b/dist/adastra-vtl-installer/VERSION @@ -1,4 +1,4 @@ Adastra VTL Installer Version: 1.0.0 -Build Date: 2025-12-09 15:17:44 +Build Date: 2025-12-09 15:32:12 Build Host: vtl-dev diff --git a/dist/adastra-vtl-installer/scripts/start-mhvtl.sh b/dist/adastra-vtl-installer/scripts/start-mhvtl.sh index 109bac1..bcdd6ad 100755 --- a/dist/adastra-vtl-installer/scripts/start-mhvtl.sh +++ b/dist/adastra-vtl-installer/scripts/start-mhvtl.sh @@ -20,7 +20,7 @@ DRIVE_NUMS=$(grep "^Drive:" "$CONFIG_FILE" | awk '{print $2}' | sort -u) for drive in $DRIVE_NUMS; do if ! pgrep -f "vtltape.*-q $drive" > /dev/null; then echo "Starting vtltape for drive $drive..." - /usr/bin/vtltape -q $drive 2>&1 | grep -v "Could not locate mhvtl kernel module" || true + /usr/bin/vtltape -q $drive > /dev/null 2>&1 & else echo "vtltape for drive $drive is already running" fi @@ -33,7 +33,7 @@ LIBRARY_NUMS=$(grep "^Library:" "$CONFIG_FILE" | awk '{print $2}' | sort -u) for library in $LIBRARY_NUMS; do if ! pgrep -f "vtllibrary.*$library" > /dev/null; then echo "Starting vtllibrary for library $library..." - /usr/bin/vtllibrary $library 2>&1 || echo "Warning: Failed to start vtllibrary for library $library" + /usr/bin/vtllibrary $library > /dev/null 2>&1 & else echo "vtllibrary for library $library is already running" fi diff --git a/scripts/start-mhvtl.sh b/scripts/start-mhvtl.sh index 109bac1..bcdd6ad 100755 --- a/scripts/start-mhvtl.sh +++ b/scripts/start-mhvtl.sh @@ -20,7 +20,7 @@ DRIVE_NUMS=$(grep "^Drive:" "$CONFIG_FILE" | awk '{print $2}' | sort -u) for drive in $DRIVE_NUMS; do if ! pgrep -f "vtltape.*-q $drive" > /dev/null; then echo "Starting vtltape for drive $drive..." - /usr/bin/vtltape -q $drive 2>&1 | grep -v "Could not locate mhvtl kernel module" || true + /usr/bin/vtltape -q $drive > /dev/null 2>&1 & else echo "vtltape for drive $drive is already running" fi @@ -33,7 +33,7 @@ LIBRARY_NUMS=$(grep "^Library:" "$CONFIG_FILE" | awk '{print $2}' | sort -u) for library in $LIBRARY_NUMS; do if ! pgrep -f "vtllibrary.*$library" > /dev/null; then echo "Starting vtllibrary for library $library..." - /usr/bin/vtllibrary $library 2>&1 || echo "Warning: Failed to start vtllibrary for library $library" + /usr/bin/vtllibrary $library > /dev/null 2>&1 & else echo "vtllibrary for library $library is already running" fi