diff options
author | Seth Vidal <skvidal@fedoraproject.org> | 2007-10-04 16:41:51 -0400 |
---|---|---|
committer | Seth Vidal <skvidal@fedoraproject.org> | 2007-10-04 16:41:51 -0400 |
commit | ce379bdb3d6ade0a6326d5d7cf9446389cf4d94b (patch) | |
tree | 1c666b97ec851ea0b842940409fb3fd65ab10a3e /func/minion/codes.py | |
parent | 3ff3336d954160739fca807732ec217d2dabc572 (diff) | |
download | func-ce379bdb3d6ade0a6326d5d7cf9446389cf4d94b.tar.gz func-ce379bdb3d6ade0a6326d5d7cf9446389cf4d94b.tar.xz func-ce379bdb3d6ade0a6326d5d7cf9446389cf4d94b.zip |
- certmaster-ca supports wildcards to -s and -c, now
- add basic acl support to funcd - make sure that the caller is using
the cert/key of our ca before letting anything run
- add authfailure exception
Diffstat (limited to 'func/minion/codes.py')
-rwxr-xr-x | func/minion/codes.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/func/minion/codes.py b/func/minion/codes.py index 058ca44..3d83668 100755 --- a/func/minion/codes.py +++ b/func/minion/codes.py @@ -22,4 +22,7 @@ class FuncException(exceptions.Exception): class InvalidMethodException(FuncException): pass +class AccessToMethodDenied(FuncException): + pass + # FIXME: more sub-exceptions maybe |