summaryrefslogtreecommitdiffstats
path: root/func/minion/server.py
Commit message (Collapse)AuthorAgeFilesLines
* turn on some acl logging so I can debug thisAdrian Likins2008-05-011-1/+1
|
* new file acls.py, start trying to write a class for the acls, so we canAdrian Likins2008-04-301-26/+4
| | | | | support reading/writing/updating them, and eventually, a minion module for it.
* dont need those print'sAdrian Likins2008-03-041-3/+0
|
* Update to knew cert locations. This is just old test code, but updateAdrian Likins2008-03-041-0/+3
| | | | it while we are at it.
* remove debug spewAdrian Likins2008-02-251-1/+0
|
* use both func and certmasters configsAdrian Likins2008-02-251-4/+9
|
* resolve some utils namespace issueAdrian Likins2008-02-251-1/+2
| | | | probably should just combine these
* use certmaster.requester.request_cert instead of utils.create_minion_certsAdrian Likins2008-02-251-2/+3
|
* Remove a bunch of unused imports.Luke Macken2008-02-211-1/+0
|
* Two kinds of utils!Michael DeHaan2008-01-291-5/+6
|
* All exceptions, async or otherwise, now come back as easily detectable ↵Michael DeHaan2008-01-291-8/+13
| | | | | | | signatures. Use utils.is_error(result) to determine if something is an error or isn't. Example scripts as well as func-inventory have been updated. See async_test.py for examples.
* Working on async error handling, lots more to do...Michael DeHaan2008-01-231-1/+1
| | | | (If it hits no exceptions, returns are right, it's the partial error case to deal with next...)
* Double-barrel asynchronous calls. Async can now occur on both sides ↵Michael DeHaan2008-01-231-1/+16
| | | | | | | | simultaneously and still appears as if there is only one "global" job id to the API caller, the minion job id's are managed in the background, complete with partial result response as things come in which should be very nice for ajaxy implication. job_status API does still need to be modified to list active jobs as well as to store the job name.
* removed more shebangs from files that are not executable as part of the ↵Steve 'Ashcrow' Milner2008-01-141-1/+0
| | | | application. rpmlint should output less warnings/errors.
* more deletions of shebangs.Steve 'Ashcrow' Milner2008-01-131-6/+3
|
* Added inventory module for mount, though something has broken ↵Michael DeHaan2007-12-171-0/+1
| | | | func-inventory's ability to query remote modules and I am still chasing what that is.
* swap out minion-acl config file for minion-acl.d dir of .acl filesSeth Vidal2007-10-181-1/+2
|
* Merge branch 'master' of ssh://git.fedoraproject.org/git/hosted/funcAdrian Likins2007-10-081-11/+21
|\
| * fine-grained acls per minionSeth Vidal2007-10-081-11/+21
| | | | | | | | - adds minion-acl.conf
* | sort the returns of these methods just to make it purdyAdrian Likins2007-10-081-2/+6
|/
* - certmaster-ca supports wildcards to -s and -c, nowSeth Vidal2007-10-041-15/+35
| | | | | | - 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
* Moved code under the func namespace.Devan Goodwin2007-10-021-0/+232
Previously we had overlord, minion, modules, and func all at the root of the source tree. After install these would all be shuffled below func. Relocated them in the source tree to reflect this.