This repository has been archived on 2025-12-03. You can view files and clone it, but cannot push or open issues or pull requests.
debian_motd/00-header
2025-02-10 13:31:25 -03:00

14 lines
377 B
Bash

#!/bin/sh
[ -r /etc/lsb-release ] && . /etc/lsb-release
if [ -z "\$DISTRIB_DESCRIPTION" ] && [ -x /usr/bin/lsb_release ]; then
# Fall back to using the very slow lsb_release utility
DISTRIB_DESCRIPTION=\$(lsb_release -s -d)
fi
figlet -W -w 480 \$(hostname)
printf "\\n"
printf "Bem vindo ao %s (%s).\\n" "\$DISTRIB_DESCRIPTION" "\$(uname -r)"
printf "\\n"$0