[ -n "$container" ] || return 0 
[ ! -f /etc/shell_init.done ] && {
    [ "$container" = "lxc" ] && SYSTEM=incus || SYSTEM=$container
    echo SERVER_HOSTNAME:
	read HOST
	[ -n "$HOST" ] && sed -i "s@HOST=.*@HOST=$HOST@g" /etc/profile.d/ps1_containers
	sed -i "s@SYSTEM=.*@SYSTEM=$SYSTEM@g" /etc/profile.d/ps1_containers
	cp /etc/profile.d/ps1_containers /etc/profile.d/ps1
	touch /etc/shell_init.done
}