From 861cda3cb5256a177845029ddf1900f51271b56c Mon Sep 17 00:00:00 2001 From: "rcritten@redhat.com" Date: Fri, 24 Aug 2007 15:42:56 -0400 Subject: Initial support for Groups Create separate object for Users and Groups (using same base class) Check for uniqueness before adding new users and groups Remove user_container from everything but add operations Abstract out a number of functions that are common across users and groups Make sure all strings passed in to be in a filter are checked Add new error message: No modifications specified --- ipa-python/group.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 ipa-python/group.py (limited to 'ipa-python/group.py') diff --git a/ipa-python/group.py b/ipa-python/group.py new file mode 100644 index 00000000..d4a27624 --- /dev/null +++ b/ipa-python/group.py @@ -0,0 +1,7 @@ +from ipa.entity import Entity + +class Group(Entity): + + def __init2__(self): + pass + -- cgit