aboutsummaryrefslogtreecommitdiffstats
path: root/src/dumm/ext
Commit message (Collapse)AuthorAgeFilesLines
* Avoid that ruby 1.9 redefines snprintf(3) etc.Tobias Brunner2012-12-101-0/+2
| | | | Otherwise our custom printf specifiers won't work.
* Properly initialize linked list when enumerating interface addressesTobias Brunner2012-12-101-0/+1
|
* rb_cvar_set() takes three arguments in Ruby 1.9Tobias Brunner2012-12-101-0/+4
|
* Moved debug.[ch] to utils folderTobias Brunner2012-10-241-1/+1
|
* Moved data structures to new collections subfolderTobias Brunner2012-10-241-1/+1
|
* Use "-include config.h" when building ruby dumm extensionMartin Willi2012-07-111-1/+1
|
* DUMM: Allow addresses to be configured with net prefix.Tobias Brunner2011-07-291-6/+8
|
* Store the exit code of executed commands in Dumm::Guest.execstatus.Tobias Brunner2010-10-122-17/+13
| | | | Also, no exception is risen for failed exec calls, anymore.
* Map the guests to a ruby hash to avoid creating new ruby objects on each ↵Tobias Brunner2010-10-121-40/+34
| | | | call of Guest.each or Guest[].
* Exposed the mutli-overlay functionality in the ruby bindings.Tobias Brunner2010-10-123-8/+71
| | | | | | | | Overlays can be added to individual guests (which overlays exactly the supplied directory) or to all guests (which overlays a subdirectory with the guest's name to each guest). The template functionality is provided as before.
* Undef PACKAGE_BUG/URL of strongSwan before including ruby variantsMartin Willi2009-12-081-0/+1
|
* removed trailing spaces ([[:space:]]+$)Martin Willi2009-09-041-46/+46
|
* added generated extconf.rb to .gitignore, removed it from distributionMartin Willi2009-05-251-1/+1
|
* Automatically build (and install) the DUMM Ruby extension.Tobias Brunner2009-05-202-0/+2
|
* Enable building the DUMM Ruby extension in a VPATH build.Tobias Brunner2009-05-202-21/+18
|
* list available templates using "template" aliasMartin Willi2009-05-111-3/+7
|
* ruby bindings for template enumeratorMartin Willi2009-05-111-0/+19
|
* added .gitignore files for dummMartin Willi2009-05-071-0/+3
|
* removing svn keyword $Id$ from all filesTobias Brunner2009-04-303-6/+0
|
* added template() shortcutMartin Willi2009-04-071-0/+5
|
* added Dumm.method_missing, allows direct invocation of guests/bridgesMartin Willi2009-04-072-4/+36
|
* added booted?/boot methodsMartin Willi2009-04-072-1/+26
|
* use safe each() implementations, allowing delete() in blockMartin Willi2009-04-073-28/+43
| | | | implement Client.reset() in ruby
* added a reset() method to Dumm and each clientMartin Willi2009-04-072-17/+61
| | | | identation cleanups
* added a guest.mconsole() method to script mconsole (e.g. add additional conX=)Martin Willi2008-10-151-0/+17
|
* set guest-specific kernel parametersMartin Willi2008-10-101-5/+2
| | | | removed memory setting, use mem= instead
* * allow to load templates from arbitrary placesTobias Brunner2008-08-281-16/+6
| | | | * changed implementation of guest?/iface?
* * guest#running?Tobias Brunner2008-08-273-11/+136
| | | | | | * guest?, iface? (also Guest.include? resp. guest.include?) * easy accessors for guests and ifaces (Guest.sun instead of Guest["sun"] and guest.eth0 instead of guest["eth0"]) * if a block is given for iface#add or iface#del then the change is only temporary while executing the block and gets reverted afterwards
* * ruby extension extracted from irdummTobias Brunner2008-08-073-0/+611
* guests do not shutdown anymore on SIGINT in irb