1495c57a99
To make structure of client_software more clear for following introduction of client_software.2nd
14 lines
499 B
Bash
Executable File
14 lines
499 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# SPDX-FileCopyrightText: Daniel Pätzold
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
#
|
|
# Obsolete Script
|
|
# Will get removed completely, its only here to advise the user to update and rerun the logon_script
|
|
#
|
|
|
|
echo " ==================== "
|
|
echo "Obsolete Script $0 called. Please update via git (should have been done already, check above!) and rerun the logon_script by relogon again."
|
|
echo "This Message should disappear then. Press any key to continue."
|
|
read -n 1 -s -r
|
|
exit 1
|