Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add httpd module. Can return information from mod_status and do graceful ↵HEADhttpd | John Eckersberg | 2009-02-20 | 1 | -0/+67 |
| | | | | service restart. | ||||
* | Added author, version and api_version docstrings. | Jasper Capel | 2009-02-03 | 2 | -4/+12 |
| | |||||
* | Added pydoc formatted documentation strings for bridge module. | Jasper Capel | 2009-02-03 | 1 | -28/+128 |
| | |||||
* | Forgot to add pydoc description to vlan module. | Jasper Capel | 2009-02-03 | 1 | -0/+4 |
| | |||||
* | Added pydoc formatted documentation strings for vlan module. | Jasper Capel | 2009-02-03 | 1 | -14/+66 |
| | |||||
* | fixed typo in vlan module | Jasper Capel | 2009-02-02 | 1 | -1/+1 |
| | |||||
* | vlan module: have it use a config file for some configurable parameters ↵ | Jasper Capel | 2009-02-02 | 1 | -20/+23 |
| | | | | instead of hardcoding them | ||||
* | bridge module: some values weren't read from config yet, fixed. | Jasper Capel | 2009-02-02 | 1 | -11/+11 |
| | |||||
* | bridge module: imported the required modules for the configfile stuff | Jasper Capel | 2009-02-02 | 1 | -10/+7 |
| | |||||
* | Changed the bridge module so it will use a config file. | Jasper Capel | 2009-02-02 | 1 | -16/+18 |
| | |||||
* | Set bridge forwarding delay to '0', so it will actually work. | Jasper Capel | 2009-02-02 | 1 | -1/+3 |
| | |||||
* | Merge branch 'no_poundbang' | Adrian Likins | 2009-01-19 | 3 | -4/+0 |
|\ | |||||
| * | remove any unneeded "/usr/bin/python" lines from scripts so it's | Adrian Likins | 2009-01-19 | 4 | -4/+0 |
| | | | | | | | | a little easier to change it if we need to. | ||||
| * | remove 'x' bit | Adrian Likins | 2009-01-19 | 1 | -0/+0 |
| | | |||||
* | | Just some permissions clean up on source files, mostly | Adrian Likins | 2009-01-19 | 3 | -0/+0 |
|/ | | | | removing 'x' bits on source code and makefiles | ||||
* | move rpm/yum initiation to after module import to workaround rpm bug | Adrian Likins | 2009-01-08 | 2 | -2/+4 |
| | | | | See https://bugzilla.redhat.com/show_bug.cgi?id=476737 | ||||
* | add new test methods used by unittests. return an empty exception | Adrian Likins | 2008-12-11 | 1 | -0/+9 |
| | |||||
* | * Added close_fds=True to sub_process calls. | Silas Sewell | 2008-11-25 | 12 | -18/+23 |
| | |||||
* | * Enabled shell for Command module. | Silas Sewell | 2008-11-25 | 1 | -9/+3 |
| | | | | * Removed unnecessary if statement. | ||||
* | add support for untrack lists of files (or file globs) | Adrian Likins | 2008-11-13 | 1 | -2/+3 |
| | |||||
* | typo found for file_name_globs by pychecker | Adrian Likins | 2008-11-13 | 1 | -1/+1 |
| | |||||
* | more func.utils/certmaster.utils changes. | Adrian Likins | 2008-11-13 | 1 | -3/+3 |
| | | | | | Module was using the wrong utils module and calling methods that didnt exist in the func one. | ||||
* | more func.utils/certmaster.utils changes. | Adrian Likins | 2008-11-13 | 1 | -2/+2 |
| | | | | Fallout from the certmaster split. | ||||
* | typo in the method args description in filetracker module | Adrian Likins | 2008-11-11 | 1 | -2/+2 |
| | | | | Missed these when the glob support was added to filetracker. | ||||
* | add func_getargs.py module from Louis Coilliot | Louis Coilliot | 2008-11-04 | 1 | -0/+60 |
| | | | | | Adds some introspection support using the "inspect" module | ||||
* | Fix minion module config examples. Add local "Config" class to module. | Adrian Likins | 2008-10-24 | 1 | -1/+11 |
| | | | | | | | | | | Add in all the approriate types and defaults to Config class Update etc/Test.conf example to include everything in main. For now we only support one stanza config files for modules. updated test cases to test that proper values are fetched from the config file for the "test" module | ||||
* | add some test cases for per module configuation. | Adrian Likins | 2008-10-24 | 1 | -0/+5 |
| | | | | | | This stuff doesnt really seem to work at this point, but pushing so other folks can take a look at it. It doesn't break anything else. | ||||
* | Add some support for saving module config files. And corresponding test cases. | Adrian Likins | 2008-10-20 | 2 | -2/+19 |
| | |||||
* | add support for filename globs | Adrian Likins | 2008-10-15 | 1 | -6/+26 |
| | | | | | | | | | | .track() and .untrack() can both take a filename, a list of filenames, a file glob, or a list of file globs now. Also, rev the api verion to 0.0.2 Fixes https://fedorahosted.org/func/ticket/59 | ||||
* | Merge branch 'jcapel-vlan' | Adrian Likins | 2008-10-08 | 1 | -9/+118 |
|\ | |||||
| * | Fixed some string/integer mixups, we'll now only use strings for vlan ids. ↵ | Jasper Capel | 2008-10-06 | 1 | -7/+27 |
| | | | | | | | | Also made some speed optimizations in the make_it_so method (i.e. don't run ifup on a VLAN that's already up). | ||||
| * | Renamed makeitso method to make_it_so. | Jasper Capel | 2008-10-06 | 1 | -1/+1 |
| | | |||||
| * | Added write() and list_permanent() methods to VLAN module. Also upped the ↵ | Jasper Capel | 2008-09-30 | 1 | -3/+53 |
| | | | | | | | | module and API versions. | ||||
| * | Added add_permanent and delete_permanent methods to vlan module. | Jasper Capel | 2008-09-30 | 1 | -0/+39 |
| | | |||||
* | | Merge branch 'jcapel-bridge' | Adrian Likins | 2008-10-08 | 1 | -8/+292 |
|\ \ | |||||
| * | | Added make_it_so and write methods | Jasper Capel | 2008-10-06 | 1 | -6/+118 |
| | | | |||||
| * | | Added methods to permanently add/remove bridges or permanently add/remove ↵ | Jasper Capel | 2008-10-06 | 1 | -3/+175 |
| |/ | | | | | | | interfaces from bridges. | ||||
* / | Django cotnrol module from Steve 'Ashcrow' Milner <stevem@gnulinux.net> | Steve 'Ashcrow' Milner | 2008-10-08 | 1 | -0/+128 |
|/ | |||||
* | Merge branch 'bridge_module' | Adrian Likins | 2008-09-17 | 1 | -0/+170 |
|\ | |||||
| * | Changed method names in bridge module for increased usability. | Jasper Capel | 2008-09-17 | 1 | -15/+23 |
| | | |||||
| * | Added new module for basic bridge management | Jasper Capel | 2008-09-17 | 1 | -0/+162 |
| | | |||||
* | | add method in test minion module to export it's config | Adrian Likins | 2008-09-16 | 1 | -0/+9 |
|/ | | | | add a simple unit test case to poke at it | ||||
* | patch to add some basic support for creating vlans from | Jasper Capel | 2008-09-16 | 1 | -0/+139 |
| | | | | Jasper Capel <capel@stone-it.com> | ||||
* | do not return None when launcing jboss with no options | Adrian Likins | 2008-09-08 | 1 | -2/+2 |
| | | | | patch from Luca Foppiano <lfoppiano@byte-code.com> | ||||
* | add a method to the test module to return a really big int | Adrian Likins | 2008-09-05 | 1 | -0/+10 |
| | | | | | | Seems to break current versions of python, however. patch from Luca Lesinigo <luca@luckyluke.org> | ||||
* | make command.run invoke sub_process with closed_fds=True | Adrian Likins | 2008-09-02 | 1 | -2/+3 |
| | | | | | | | so new processed dont inherit any fd's from func FIXME: we should probably do the same for all uses of sub_process | ||||
* | Merge branch 'master' into cmd_run_env | Adrian Likins | 2008-08-26 | 25 | -20/+1036 |
|\ | |||||
| * | Create simple copyfile overlord module that is able to send big files. | Krzysztof A. Adamski | 2008-08-23 | 1 | -0/+41 |
| | | |||||
| * | little change in network test | makkalot | 2008-08-13 | 1 | -4/+4 |
| | | |||||
| * | export the iptables command | makkalot | 2008-08-13 | 2 | -1/+122 |
| | |