mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
28 lines
668 B
Bash
Executable File
28 lines
668 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) Authors: https://www.armbian.com/authors
|
|
#
|
|
# This file is licensed under the terms of the GNU General Public
|
|
# License version 2. This program is licensed "as is" without any
|
|
# warranty of any kind, whether express or implied.
|
|
|
|
# DO NOT EDIT THIS FILE but add config options to /etc/default/armbian-motd
|
|
# any changes will be lost on board support package update
|
|
|
|
THIS_SCRIPT="clear"
|
|
MOTD_DISABLE=""
|
|
|
|
[[ -f /etc/default/armbian-motd ]] && . /etc/default/armbian-motd
|
|
|
|
for f in $MOTD_DISABLE; do
|
|
[[ $f == $THIS_SCRIPT ]] && exit 0
|
|
done
|
|
|
|
# Clear screen
|
|
if [ -f /bin/bash ]; then
|
|
export TERM="$(/bin/bash -c 'echo $TERM')"
|
|
fi
|
|
clear
|
|
|
|
exit 0
|