Hello!

I have searched around on google and github without finding any puppet
module for managing VirtualBox installations.

I've seen some modules for xen, but none that works out of the box on
ubuntu. For what I know, xen need a special build kernel or some
kernel modules.

Here is my start... any ideas or suggestions?


class virtualbox {

# Install
        package { virtualbox-ose:
                name => $operatingsystem ? {
                        default => "virtualbox-ose",
                        },
                ensure => present,
        }
        package { virtualbox-ose-modules-generic:
                name => $operatingsystem ? {
                        default => "virtualbox-ose-modules-generic",
                        },
                ensure => present,
        }
        package { bridge-util:
                name => $operatingsystem ? {
                        default => "bridge-utils",
                        },
                ensure => present,
        }

}
define createvm($name, $basefolder = '/vbox') {
# VBoxManage createvm -name $name -basefolder $basefolder
#
}

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to