From 78b5987101c3d489c8397da05546d72e24aeea4c Mon Sep 17 00:00:00 2001 From: John Dennis Date: Mon, 26 Nov 2007 23:11:49 -0500 Subject: add parse_items(), read_items_file() move read_pairs_file() to ipautil --- ipa-python/radius_util.py | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'ipa-python/radius_util.py') diff --git a/ipa-python/radius_util.py b/ipa-python/radius_util.py index e502fece..96bc0f89 100644 --- a/ipa-python/radius_util.py +++ b/ipa-python/radius_util.py @@ -59,8 +59,6 @@ __all__ = [ 'radius_profile_ldap_attr_to_radius_attr', 'radius_profile_attr_to_ldap_attr', - 'read_pairs_file', - 'get_secret', 'validate_ip_addr', 'validate_secret', @@ -240,19 +238,6 @@ def radius_profile_dn(uid, container, suffix): #------------------------------------------------------------------------------ -comment_re = re.compile('#.*$', re.MULTILINE) -def read_pairs_file(filename): - if filename == '-': - fd = sys.stdin - else: - fd = open(filename) - data = fd.read() - data = comment_re.sub('', data) # kill comments - pairs = ipautil.parse_key_value_pairs(data) - if fd != sys.stdin: fd.close() - return pairs - - def get_ldap_attr_translations(): comment_re = re.compile('#.*$') radius_attr_to_ldap_attr = {} -- cgit