summaryrefslogtreecommitdiffstats
path: root/func/overlord/cmd_modules/copyfile.py
Commit message (Collapse)AuthorAgeFilesLines
* move command.py:BaseCommand() to it's own module, base_command.pyAdrian Likins2008-03-281-3/+3
| | | | | update the cmd_modules/* classes accordingly also cleanup some imports in the cmd_modules/* classes
* add a BaseCommand class to func/overlord/command.py.Adrian Likins2008-03-281-17/+6
| | | | | | | | | | | | | This class adds data about the default settings for the Overlord class that the various cmd_module classes were hardcoding, notable DEFAULT_PORT. update all the cmd_modules/* classes to use the new BaseCommand class. Remove any DEFAULT_PORT references. Also remove the ill advised --port option some of them had, since this doesnt really make much sense. Progress on https://fedorahosted.org/func/ticket/31
* Changing func/func/overlord/client.py:Client() to Overlord(). Client() stillAdrian Likins2008-03-281-6/+6
| | | | | | | works but will dive a deprecation warning. First pass at this refactor. I think just about everything has been updated, but some questions remain. Like if client.py needs a name change.
* Our client.command.Command class looks for 'usage', not 'useage'Luke Macken2008-01-141-1/+1
|
* more deletions of shebangs.Steve 'Ashcrow' Milner2008-01-131-3/+0
|
* change copyfile cmd line to transmit file contents as binary blobsAdrian Likins2007-10-241-2/+2
| | | | | change copyfile minion module to accept blobs, add checksum_blob for doing plain blobs
* copyfile.py: dont need the parse call hereAdrian Likins2007-10-121-3/+0
| | | | | | | command.py: move the parse args stuff to before we call subcommands func_command.py: include the copyfile classes so we can use them
* what kind of weird name is "rpath", change to "remotepath"Adrian Likins2007-10-121-2/+2
|
* add "copyfile" commandline module that knows how to get the localAdrian Likins2007-10-121-0/+79
file, it's perms, and call the remote end correctly add copyright blurb to other modules