#------------------------------------------------------------------------------ # /usr/local/htdocs/release/eiskernel - get eis kernel version # # Copyright (c) 2003-2010 Marcus Herleb, info(at)herleb(dot).de # Copyright (c) 2011-2021 The Eisfair Team, team(at)eisfair(dot)org # # Creation: 2002-05-04 tg # Last Update: $Id$ # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version.. #------------------------------------------------------------------------------ # read eislib etc. . /var/install/include/virtlib case `check_running_on_xen_detailed` in noxen) # noxen - read kernel version echo "`grep "" /var/install/packages/eiskernel 2>/dev/null | sed 's###g'`" ;; *) # xendomu, xendom0, hvm echo "none" ;; esac