Different logo style in the shell
This commit is contained in:
parent
92a27e8581
commit
2c73ce7733
|
@ -238,13 +238,12 @@ iface eth0 inet static
|
||||||
if [[ $VARIANT != "meshclient" && $VARIANT != "meshusb" ]]; then
|
if [[ $VARIANT != "meshclient" && $VARIANT != "meshusb" ]]; then
|
||||||
# change the motd to show further install instructions
|
# change the motd to show further install instructions
|
||||||
echo $"
|
echo $"
|
||||||
.---. . .
|
_____ _ _
|
||||||
| | |
|
| __|___ ___ ___ _| |___ _____| |_ ___ ___ ___
|
||||||
|--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
|
| __| _| -_| -_| . | . | | . | . | | -_|
|
||||||
| | (.-' (.-' ( | ( )| | | | )( )| | (.-'
|
|__| |_| |___|___|___|___|_|_|_|___|___|_|_|___|
|
||||||
' ' --' --' -' - -' ' ' -' -' -' ' - --'
|
|
||||||
|
|
||||||
Initial base install
|
Initial base install
|
||||||
|
|
||||||
Your system is not yet installed. To complete the process run the
|
Your system is not yet installed. To complete the process run the
|
||||||
following commands, then enter your details.
|
following commands, then enter your details.
|
||||||
|
@ -255,13 +254,12 @@ following commands, then enter your details.
|
||||||
" > "$rootdir/etc/motd"
|
" > "$rootdir/etc/motd"
|
||||||
else
|
else
|
||||||
echo $"
|
echo $"
|
||||||
.---. . .
|
_____ _ _
|
||||||
| | |
|
| __|___ ___ ___ _| |___ _____| |_ ___ ___ ___
|
||||||
|--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
|
| __| _| -_| -_| . | . | | . | . | | -_|
|
||||||
| | (.-' (.-' ( | ( )| | | | )( )| | (.-'
|
|__| |_| |___|___|___|___|_|_|_|___|___|_|_|___|
|
||||||
' ' --' --' -' - -' ' ' -' -' -' ' - --'
|
|
||||||
|
|
||||||
Freedom in the Mesh
|
Freedom in the Mesh
|
||||||
" > "$rootdir/etc/motd"
|
" > "$rootdir/etc/motd"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,13 +38,14 @@ function change_login_message {
|
||||||
rm -f /etc/init.d/motd
|
rm -f /etc/init.d/motd
|
||||||
fi
|
fi
|
||||||
|
|
||||||
{ echo ".---. . . ";
|
{ echo ' _____ _ _';
|
||||||
echo "| | | ";
|
echo ' | __|___ ___ ___ _| |___ _____| |_ ___ ___ ___';
|
||||||
echo "|--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-. ";
|
echo ' | __| _| -_| -_| . | . | | . | . | | -_|';
|
||||||
echo "| | (.-' (.-' ( | ( )| | | | )( )| | (.-' ";
|
echo ' |__| |_| |___|___|___|___|_|_|_|___|___|_|_|___|';
|
||||||
echo "' ' --' --' -' - -' ' ' -' -' -' ' - --'";
|
echo '';
|
||||||
echo $' Freedom in the Cloud';
|
echo $' Freedom in the Cloud';
|
||||||
echo ''; } > /etc/motd
|
echo ''; } > /etc/motd
|
||||||
|
|
||||||
mark_completed "${FUNCNAME[0]}"
|
mark_completed "${FUNCNAME[0]}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue