mirror of
https://github.com/nextcloud/vm.git
synced 2025-10-26 11:27:32 +00:00
23 lines
421 B
Bash
23 lines
421 B
Bash
#!/bin/bash
|
|
|
|
# T&M Hansson IT AB © - 2024, https://www.hanssonit.se/
|
|
|
|
true
|
|
SCRIPT_NAME="Redirect to Recognize"
|
|
# shellcheck source=lib.sh
|
|
source /var/scripts/fetch_lib.sh
|
|
|
|
# Check for errors + debug code and abort if something isn't right
|
|
# 1 = ON
|
|
# 0 = OFF
|
|
DEBUG=0
|
|
debug_mode
|
|
|
|
# Must be root
|
|
root_check
|
|
|
|
# This is because we move the old script to old, and replaced it with this instead.
|
|
run_script APP recognize
|
|
|
|
exit
|