summaryrefslogtreecommitdiffstats
path: root/cobbler/modules/cli_system.py
blob: bfc5c2f778c521d303bde3f315c6929529c2c44b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
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)
    ]