#! /bin/sh #---------------------------------------------------------------------------- # /var/install/bin/verify-bootloader - check if boot configuration is valid # # Creation : 2021-04-23 hbfl # Last Update: $Id$ # # Copyright (c) 2021-@@YEAR@@ the eisfair team, team(at)eisfar(dot)org # # 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. #---------------------------------------------------------------------------- # this is only a dummy to reflect the old version from lilo #----------------------------------------------------------------------------- # main program #----------------------------------------------------------------------------- main() { exit 0 } #----------------------------------------------------------------------------- # call function main #----------------------------------------------------------------------------- main "${@}" #----------------------------------------------------------------------------- # end #-----------------------------------------------------------------------------