#----------------------------------------------------------------------------- # /etc/check.d/partimg.exp - expressions for check table of configuration params # # Copyright (c) 2010 The Eisfair Team, team(at)eisfair(dot)org # # Creation: 2010-10-08 jed # 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. #----------------------------------------------------------------------------- PARTIMG_PEM_NAME = '[[:alnum:]](-?[[:alnum:]._])*\.pem' : 'no valid certificate file name given, only numbers, letters, ".", "-" and "_" are allowed and its name needs to end on .pem.' PARTIMG_KEY_NAME = '[[:alnum:]](-?[[:alnum:]._])*\.key' : 'no valid key file name given, only numbers, letters, ".", "-" and "_" are allowed and its name needs to end on .key.' PARTIMG_EPEM_NAME = '()|(RE:PARTIMG_PEM_NAME)' : 'no valid certificate file name given, should be an empty string or only numbers, letters, ".", "-" and "_" are allowed and its name needs to end on .pem.' PARTIMG_EKEY_NAME = '()|(RE:PARTIMG_KEY_NAME)' : 'no valid certificate file name given, should be an empty string or only numbers, letters, ".", "-" and "_" are allowed and its name needs to end on .key.'