summaryrefslogtreecommitdiffstats
path: root/cobbler/modules
diff options
context:
space:
mode:
Diffstat (limited to 'cobbler/modules')
-rw-r--r--cobbler/modules/cli_distro.py16
-rw-r--r--cobbler/modules/cli_profile.py99
-rw-r--r--cobbler/modules/cli_repo.py77
-rw-r--r--cobbler/modules/cli_system.py99
4 files changed, 283 insertions, 8 deletions
diff --git a/cobbler/modules/cli_distro.py b/cobbler/modules/cli_distro.py
index dd9ba4e..ff08e8c 100644
--- a/cobbler/modules/cli_distro.py
+++ b/cobbler/modules/cli_distro.py
@@ -33,16 +33,16 @@ class DistroFunction(commands.CobblerFunction):
return [ "add", "edit", "copy", "rename", "delete" ]
def add_options(self, p, args):
- p.add_option("--name", dest="name")
if not "delete" in args:
- p.add_option("--kernel", dest="kernel")
- p.add_option("--initrd", dest="initrd")
- p.add_option("--kopts", dest="kopts")
- p.add_option("--ksmeta", dest="ksmeta")
- p.add_option("--arch", dest="arch")
- p.add_option("--breed", dest="breed")
+ p.add_option("--arch", dest="arch", help="ex: x86, x86_64, ia64")
+ p.add_option("--breed", dest="breed", help="ex: redhat, debian, suse")
+ p.add_option("--initrd", dest="initrd", help="absolute path to initrd.img (REQUIRED)")
+ p.add_option("--kernel", dest="kernel", help="absolute path to vmlinuz (REQUIRED)")
+ p.add_option("--kopts", dest="kopts", help="ex: 'noipv6'")
+ p.add_option("--ksmeta", dest="ksmeta", help="ex: 'blippy=7'")
+ p.add_option("--name", dest="name", help="ex: 'RHEL-5-i386' (REQUIRED)")
if "copy" in args or "rename" in args:
- p.add_option("--newname", dest="newname")
+ p.add_option("--newname", dest="newname", help="for copy/rename commands")
def run(self):
diff --git a/cobbler/modules/cli_profile.py b/cobbler/modules/cli_profile.py
new file mode 100644
index 0000000..8385986
--- /dev/null
+++ b/cobbler/modules/cli_profile.py
@@ -0,0 +1,99 @@
+"""
+Profile CLI module.
+
+Copyright 2007, Red Hat, Inc
+Michael DeHaan <mdehaan@redhat.com>
+
+This software may be freely redistributed under the terms of the GNU
+general public license.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+"""
+
+import distutils.sysconfig
+import sys
+
+plib = distutils.sysconfig.get_python_lib()
+mod_path="%s/cobbler" % plib
+sys.path.insert(0, mod_path)
+
+from rhpl.translate import _, N_, textdomain, utf8
+import commands
+import cexceptions
+
+
+class ProfileFunction(commands.CobblerFunction):
+
+ def command_name(self):
+ return "profile"
+
+ def subcommands(self):
+ return [ "add", "edit", "copy", "rename", "delete" ]
+
+ def add_options(self, p, args):
+ if not "delete" in args:
+ p.add_option("--distro", dest="distro", help="ex: 'RHEL-5-i386' (REQUIRED)")
+ p.add_option("--dhcp-tag", dest="dhcp_tag", help="for use in advanced DHCP configuration")
+ p.add_option("--inherit", dest="inherit", help="inherit from this profile name, defaults to no")
+ p.add_option("--kickstart", dest="kickstart", help="absolute path to kickstart template (RECOMMENDED)")
+ p.add_option("--ksmeta", dest="ksmeta", help="ex: 'blippy=7'")
+ p.add_option("--kopts", dest="kopts", help="ex: 'noipv6'")
+ p.add_option("--name", dest="name", help="a name for the profile (REQUIRED)")
+ if "copy" in args or "rename" in args:
+ p.add_option("--newname", dest="newname")
+ if not "delete" in args:
+ p.add_option("--repos", dest="repos", help="names of cobbler repos")
+ p.add_option("--server-override", dest="server_override", help="overrides value in settings file")
+ p.add_option("--virt-bridge", dest="virt_bridge", help="ex: 'virbr0'")
+ p.add_option("--virt-cpus", dest="virt_cpus", help="integer (default: 1)")
+ p.add_option("--virt-file-size", dest="virt_file_size", help="size in GB")
+ p.add_option("--virt-path", dest="virt_path", help="path, partition, or volume")
+ p.add_option("--virt-ram", dest="virt_ram", help="size in MB")
+ p.add_option("--virt-type", dest="virt_type", help="ex: 'xenpv', 'qemu'")
+
+ def run(self):
+
+
+ if self.options.inherit:
+ obj = self.object_manipulator_start(self.api.new_profile,self.api.profiles,subobject=True)
+ else:
+ obj = self.object_manipulator_start(self.api.new_profile,self.api.profiles,subobject=False)
+
+ if obj is None:
+ return True
+
+ if self.options.inherit: obj.set_parent(self.options.inherit)
+ if self.options.distro: obj.set_distro(self.options.distro)
+ if self.options.kickstart: obj.set_kickstart(self.options.kickstart)
+ if self.options.kopts: obj.set_kernel_options(self.options.kopts)
+ if self.options.ksmeta: obj.set_ksmeta(self.options.ksmeta)
+ if self.options.virt_file_size: obj.set_virt_file_size(self.options.virt_file_size)
+ if self.options.virt_ram: obj.set_virt_ram(self.options.virt_ram)
+ if self.options.virt_bridge: obj.set_virt_bridge(self.options.virt_bridge)
+ if self.options.virt_cpus: obj.set_virt_cpus(self.options.virt_cpus)
+ if self.options.repos: obj.set_repos(self.options.repos)
+ if self.options.virt_path: obj.set_virt_path(self.options.virt_path)
+ if self.options.dhcp_tag: obj.set_dhcp_tag(self.options.dhcp_tag)
+ if self.options.server_override: obj.set_server(self.options.server)
+
+ return self.object_manipulator_finish(obj, self.api.profiles)
+
+
+
+########################################################
+# MODULE HOOKS
+
+def register():
+ """
+ The mandatory cobbler module registration hook.
+ """
+ return "cli"
+
+def cli_functions(api):
+ return [
+ ProfileFunction(api)
+ ]
+
+
diff --git a/cobbler/modules/cli_repo.py b/cobbler/modules/cli_repo.py
new file mode 100644
index 0000000..09fa234
--- /dev/null
+++ b/cobbler/modules/cli_repo.py
@@ -0,0 +1,77 @@
+"""
+Repo CLI module.
+
+Copyright 2007, Red Hat, Inc
+Michael DeHaan <mdehaan@redhat.com>
+
+This software may be freely redistributed under the terms of the GNU
+general public license.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+"""
+
+import distutils.sysconfig
+import sys
+
+plib = distutils.sysconfig.get_python_lib()
+mod_path="%s/cobbler" % plib
+sys.path.insert(0, mod_path)
+
+from rhpl.translate import _, N_, textdomain, utf8
+import commands
+import cexceptions
+
+
+class RepoFunction(commands.CobblerFunction):
+
+ def command_name(self):
+ return "repo"
+
+ def subcommands(self):
+ return [ "add", "edit", "copy", "rename", "delete" ]
+
+ def add_options(self, p, args):
+ if not "delete" in args:
+ p.add_option("--arch", dest="arch", help="overrides repo arch if required")
+ p.add_option("--createrepo-flags", dest="createrepo_flags", help="additional flags for createrepo")
+ p.add_option("--rpm-list", dest="rpm_list", help="just mirror these rpms")
+ p.add_option("--keep-updated", dest="keep_updated", help="update on each reposync, yes/no")
+ p.add_option("--mirror", dest="mirror", help="source to mirror (REQUIRED)")
+ p.add_option("--name", dest="name", help="ex: 'Fedora-8-updates-i386' (REQUIRED)")
+ if "copy" in args or "rename" in args:
+ p.add_option("--newname", dest="newname", help="used for copy/edit")
+
+ def run(self):
+
+ obj = self.object_manipulator_start(self.api.new_repo,self.api.repos)
+ if obj is None:
+ return True
+
+ if self.options.arch: obj.set_arch(self.options.arch)
+ if self.options.createrepo_flags: obj.set_createrepo_flags(self.options.createrepo_flags)
+ if self.options.rpm_list: obj.set_rpm_list(self.options.rpm_list)
+ if self.options.keep_updated: obj.set_keep_updated(self.options.keep_updated)
+ if self.options.mirror: obj.set_mirror(self.options.mirror)
+
+ return self.object_manipulator_finish(obj, self.api.repos)
+
+
+
+########################################################
+# MODULE HOOKS
+
+def register():
+ """
+ The mandatory cobbler module registration hook.
+ """
+ return "cli"
+
+def cli_functions(api):
+ return [
+ RepoFunction(api)
+ ]
+ return []
+
+
diff --git a/cobbler/modules/cli_system.py b/cobbler/modules/cli_system.py
new file mode 100644
index 0000000..bfc5c2f
--- /dev/null
+++ b/cobbler/modules/cli_system.py
@@ -0,0 +1,99 @@
+"""
+System CLI module.
+
+Copyright 2007, Red Hat, Inc
+Michael DeHaan <mdehaan@redhat.com>
+
+This software may be freely redistributed under the terms of the GNU
+general public license.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+"""
+
+import distutils.sysconfig
+import sys
+
+plib = distutils.sysconfig.get_python_lib()
+mod_path="%s/cobbler" % plib
+sys.path.insert(0, mod_path)
+
+from rhpl.translate import _, N_, textdomain, utf8
+import commands
+import cexceptions
+
+
+class SystemFunction(commands.CobblerFunction):
+
+ def command_name(self):
+ return "system"
+
+ def subcommands(self):
+ return [ "add", "edit", "copy", "rename", "delete" ]
+
+
+ def add_options(self, p, args):
+ if not "delete" in args:
+ p.add_option("--dhcp-tag", dest="dhcp_tag", help="for use in advanced DHCP configurations")
+ p.add_option("--gateway", dest="gateway", help="for static IP / templating usage")
+ p.add_option("--hostname", dest="hostname", help="ex: server.example.org")
+ p.add_option("--interface", dest="interface", help="edit this interface # (0-7, default 0)")
+ p.add_option("--ip", dest="ip", help="ex: 192.168.1.55, (RECOMMENDED)")
+ p.add_option("--kopts", dest="kopts", help="ex: 'noipv6'")
+ p.add_option("--ksmeta", dest="ksmeta", help="ex: 'blippy=7'")
+ p.add_option("--mac", dest="mac", help="ex: 'AA:BB:CC:DD:EE:FF', (RECOMMENDED)")
+ p.add_option("--name", dest="name", help="a name for the system (REQUIRED)")
+ if not "delete" in args:
+ p.add_option("--netboot-enabled", dest="netboot_enabled", help="PXE on (1) or off (0)")
+ if "copy" in args or "rename" in args:
+ p.add_option("--newname", dest="newname", help="for use with copy/edit")
+ if not "delete" in args:
+ p.add_option("--profile", dest="profile", help="name of cobbler profile (REQUIRED)")
+ p.add_option("--server-override", dest="server_override", help="overrides server value in settings file")
+ p.add_option("--subnet", dest="subnet", help="for static IP / templating usage")
+ p.add_option("--virt-bridge", dest="virt_bridge", help="ex: virbr0")
+ p.add_option("--virt-type", dest="virt_type", help="ex: xenpv, qemu")
+
+
+ def run(self):
+
+ obj = self.object_manipulator_start(self.api.new_system,self.api.systems)
+ if obj is None:
+ return True
+
+ if self.options.profile: obj.set_profile(self.options.profile)
+ if self.options.kopts: obj.set_kernel_options(self.options.kopts)
+ if self.options.ksmeta: obj.set_ksmeta(self.options.ksmeta)
+ if self.options.netboot_enabled: obj.set_netboot_enabled(self.options.netboot_enabled)
+ if self.options.server_override: obj.set_server(self.options.server_override)
+ if self.options.virt_path: obj.set_virt_path(self.options.virt_path)
+ if self.options.virt_type: obj.set_virt_type(self.options.virt_type)
+
+ my_interface = "intf%s" % self.options.interface
+ if self.options.hostname: obj.set_hostname(self.options.hostname, my_interface)
+ if self.options.mac: obj.set_mac_address(self.options.mac, my_interface)
+ if self.options.ip: obj.set_ip_address(self.options.ip, my_interface)
+ if self.options.subnet: obj.set_subnet(self.options.subnet, my_interface)
+ if self.options.gateway: obj.set_gateway(self.options.gateway, my_interface)
+ if self.options.dhcp_tag: obj.set_dhcp_tag(self.options.dhcp_tag, my_interface)
+
+ return self.object_manipulator_finish(obj, self.api.profiles)
+
+
+
+########################################################
+# MODULE HOOKS
+
+def register():
+ """
+ The mandatory cobbler module registration hook.
+ """
+ return "cli"
+
+def cli_functions(api):
+ return [
+ SystemFunction(api)
+ ]
+
+