move 'apu_system' back to 'to_system'

This commit is contained in:
l_samenv
2024-05-14 11:17:50 +02:00
parent ae5a7d7afd
commit eac314346f
3 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,13 @@
export EDITOR=nano
echo "-----------------------------------------------------"
echo "Welcome to $HOSTNAME $(hostname -I)"
echo "ethernet addr $(cat /sys/class/net/eth0/address)"
function service_status () {
for name in $@; do \
enabled=$(systemctl is-enabled ${name} 2> /dev/null) && \
echo ${name} $(systemctl is-active ${name}) $enabled; \
done | column -t | grep --color=always '\(disabled\|inactive\|$\)' | nl -bn
}
alias current='cat /home/l_samenv/boxtools/current'
service_status router frappy display
echo "> current # show currently installed state"