Esempio n. 1
0
    def ui_content(self):
        """Describes the UI this plugin requires
        This is an ordered list of (path, widget) tuples.
        """
        mbond = defaults.NicBonding().retrieve()
        bond_status = ", ".join(mbond["slaves"] or [])
        bond_lbl = "Remove %s (%s)" % (mbond["name"], bond_status) \
            if bond_status else "Create Bond"

        ws = [
            ui.Header("header[0]", "System Identification"),
            ui.Entry("hostname", "Hostname:"),
            ui.Divider("divider[0]"),
            ui.Entry("dns[0]", "DNS Server 1:"),
            ui.Entry("dns[1]", "DNS Server 2:"),
            ui.Divider("divider[1]"),
            ui.Entry("ntp[0]", "NTP Server 1:"),
            ui.Entry("ntp[1]", "NTP Server 2:"),
            ui.Divider("divider[2]"),
            NicTable("nics", height=3),
            ui.Row("row[0]", [
                ui.Button("button.ping", "Ping"),
                ui.Button("button.toggle_bond", bond_lbl)
            ])
        ]

        page = ui.Page("page", ws)
        # Save it "locally" as a dict, for better accessability
        self.widgets.add(page)
        return page
Esempio n. 2
0
    def ui_content(self):
        page_title = "Please select the disk to use for booting %s" % \
                     self.application.product.PRODUCT_SHORT

        other_device = self._model.get("boot.device.custom", "")
        devices = self.storage_discovery.all_devices_for_ui_table(other_device)

        ws = [ui.Header("header[0]", page_title)]

        if devices:
            ws += [
                ui.Table(
                    "boot.device", "",
                    " %6s  %11s  %5s" % ("Location", "Device Name", "Size"),
                    devices),
                DeviceDetails("label.details", self, "(No device)")
            ]
        else:
            ws += [
                ui.Label("boot.no_device", "No Valid Boot Devices Detected")
            ]

        page = ui.Page("boot", ws)
        page.buttons = [
            ui.QuitButton("button.quit", "Quit"),
            ui.Button("button.back", "Back"),
            ui.SaveButton("button.next", "Continue")
        ]

        self.widgets.add(page)
        return page
Esempio n. 3
0
 def ui_content(self):
     ws = [
         ui.Header("header[0]",
                   "Require a password for local console access?"),
         ui.Label(
             "label[0]", "Please enter the current admin " +
             "password. You may also change the admin password " +
             "if required. If the new password fields are left" +
             "blank the password will remain the same."),
         ui.Label("label[1]", "Password for local console access"),
         ui.Divider("divider[0]"),
         ui.PasswordEntry("upgrade.current_password", "Current Password:"******"divider[1]"),
         ui.PasswordEntry("upgrade.password", "Password:"******"upgrade.password_confirmation",
                          "Confirm Password:"******"divider[2]"),
         ui.Label("current_password.info", ""),
         ui.Label("password.info", self.__no_new_password_msg)
     ]
     self.widgets.add(ws)
     page = ui.Page("password", ws)
     page.buttons = [
         ui.QuitButton("button.quit", "Quit"),
         ui.Button("button.back", "Back"),
         ui.SaveButton("button.next", "Update")
     ]
     return page
 def ui_content(self):
     ws = [
         ui.Header("header[0]",
                   _("Require a password for the admin user?")),
         ui.Label(
             "label[0]",
             _("Please enter the current admin ") +
             _("password. You may also change the admin password ") +
             _("if required. If the new password fields are left ") +
             _("blank the password will remain the same.")),
         ui.Label("label[1]", _("Password for the admin user")),
         ui.Divider("divider[0]"),
         ui.PasswordEntry("upgrade.current_password",
                          _("Current Password:"******"divider[1]"),
         ui.ConfirmedEntry("upgrade.password",
                           _("Password:"******"current_password.info", ""),
         ui.Label("password.info", self.__no_new_password_msg)
     ]
     page = ui.Page("password", ws)
     page.buttons = [
         ui.QuitButton("button.quit", "Quit"),
         ui.Button("button.back", "Back"),
         ui.SaveButton("button.next", "Update")
     ]
     self.widgets.add(page)
     return page
Esempio n. 5
0
 def ui_content(self):
     ws = [
         ui.Header("header[0]", "Storage Volumes"),
         ui.Label(
             "label[0]", "Please enter the sizes for the " +
             "following partitions in MB"),
         ui.Divider("divider[0]"),
         ui.Entry("storage.efi_size", "UEFI/Bios:", enabled=False),
         ui.Divider("divider[1]"),
         ui.Entry("storage.root_size", "Root & RootBackup:", enabled=False),
         ui.Label("label[1]", "(2 partitions at 512MB each)"),
         ui.Divider("divider[2]"),
         ui.Entry("storage.swap_size", "Swap:"),
         ui.Entry("storage.config_size", "Config:"),
         ui.Entry("storage.logging_size", "Logging:"),
         ui.Entry("storage.data_size", "Data:"),
     ]
     self.widgets.add(ws)
     page = ui.Page("storage", ws)
     page.buttons = [
         ui.QuitButton("button.quit", "Quit"),
         ui.Button("button.back", "Back"),
         ui.SaveButton("button.next", "Next")
     ]
     return page
Esempio n. 6
0
    def ui_content(self):
        ws = [
            ui.Header("header", _("Remote Storage")),
            ui.Entry("iscsi.initiator_name",
                     _("iSCSI Initiator Name:"),
                     align_vertical=True),
            ui.Divider("divider[0]"),
        ]

        net_is_configured = utils.network.NodeNetwork().is_configured()

        if not net_is_configured:
            ws.extend([
                ui.Notice(
                    "network.notice", "Networking is not configured, " +
                    "please configure it before NFSv4 " + "Domain"),
                ui.Divider("notice.divider")
            ])
        ws.extend([
            ui.Entry("nfsv4.domain",
                     _("NFSv4 Domain (example.redhat.com):"),
                     enabled=net_is_configured,
                     align_vertical=True)
        ])

        page = ui.Page("page", ws)
        self.widgets.add(page)
        return page
Esempio n. 7
0
    def ui_content(self):
        page_title = _("Please select the disk to use for booting %s") % \
            self.application.product.PRODUCT_SHORT

        other_device = self._model.get("boot.device.custom", "")
        devices = self.storage_discovery.all_devices_for_ui_table()

        ws = [ui.Header("header[0]", page_title)]

        tbl_head = self.storage_discovery.tbl_tpl.format(bus=_("Location"),
                                                         name=_("Device Name"),
                                                         size=_("Size (GB)"))
        if devices:
            ws += [ui.Table("boot.device", "", tbl_head, devices),
                   ui.Divider("divider[0]"),
                   ui.Button("button.other_device", "Other device: %s" %
                             other_device),
                   DeviceDetails("label.details", self, _("(No device)"))
                   ]
        else:
            ws += [ui.Label("boot.no_device",
                            _("No Valid Boot Devices Detected"))]

        page = ui.Page("boot", ws)
        page.buttons = [ui.QuitButton("button.quit", _("Quit")),
                        ui.Button("button.back", _("Back")),
                        ui.SaveButton("button.next", _("Continue"))]

        self.widgets.add(page)
        return page
    def ui_content(self):
        sync_mgmt()

        buttons = []
        net_is_configured = utils.network.NodeNetwork().is_configured()
        header_menu = "{engine_name} Configuration".format(
            engine_name=config.engine_name)

        if not net_is_configured:
            ws = [
                ui.Header("header[0]", header_menu),
                ui.Notice(
                    "network.notice", "Networking is not configured, " +
                    "please configure it before " + "registering"),
                ui.Divider("divider[0]")
            ]

        elif self._hosted_engine_configured():
            ws = [
                ui.Header("header[0]", header_menu),
                ui.Notice(
                    "he.notice",
                    "Hosted Engine is configured. Engine registration "
                    "is disabled, as this host is already registered to"
                    " the hosted engine"),
                ui.Divider("divider[0]"),
                ui.Label("vdsm_cfg.password._label",
                         "Password for adding additional hosts"),
                ui.Label(
                    "vdsm_cfg.password._label2",
                    "Note: This sets the root password and "
                    "enables SSH"),
                ui.ConfirmedEntry("vdsm_cfg.password", "Password:"******"action.register", "Save")]

        else:
            ws = [
                ui.Header("header[0]", header_menu),
                ui.Entry("vdsm_cfg.address",
                         str(config.engine_name) + " FQDN (or fqdn:port):"),
                ui.Divider("divider[0]"),
                ui.Label(
                    "vdsm_cfg.password._label",
                    "Optional password for adding Node through " +
                    str(config.engine_name)),
                ui.Label(
                    "vdsm_cfg.password._label2",
                    "Note: This sets the root password and "
                    "enables SSH"),
                ui.ConfirmedEntry("vdsm_cfg.password", "Password:"******"action.register", "Save / Register")]

        page = ui.Page("page", ws)
        page.buttons = buttons

        self.widgets.add(page)
        return page
Esempio n. 9
0
 def ui_content(self):
     ws = [
         ui.Button("button.install",
                   "Install %s" % str(self.application.product)),
     ]
     self.widgets.add(ws)
     page = ui.Page("welcome", ws)
     page.buttons = [ui.Button("button.quit", "Quit")]
     return page
 def ui_content(self):
     ws = [ui.Header("header[0]", _("Installation"))]
     ws += self.___installation_options()
     ws += [ui.Divider("divider[0]")]
     ws += self.__additional_infos()
     self.widgets.add(ws)
     page = ui.Page("welcome", ws)
     page.buttons = [ui.QuitButton("button.quit", _("Quit"))]
     return page
Esempio n. 11
0
    def ui_content(self):

        ws = [
            ui.Header("header[0]", _("Logging")),
            ui.Label(
                "logrotate.header",
                _("The logs will be rotated at the ") +
                _("specified size not more often than the ") +
                _("set inerval")),
            ui.Entry("logrotate.max_size",
                     _("Logrotate Max Log ") + _("Size (KB):")),
            ui.Options("logrotate.interval", _("Interval"), self._intervals),
            ui.Divider("divider[0]")
        ]

        net_is_configured = utils.network.NodeNetwork().is_configured()

        if not net_is_configured:
            ws.extend([
                ui.Notice(
                    "network.notice",
                    _("Networking is not configured, ") +
                    _("please configure it before rsyslog ") +
                    _("and/or netconsole")),
                ui.Divider("notice.divider")
            ])

        ws.extend([
            ui.Label(
                "rsyslog.header",
                _("RSyslog is an enhanced multi-") + _("threaded syslogd")),
            ui.Entry("rsyslog.address",
                     _("Server Address:"),
                     enabled=net_is_configured),
            ui.Entry("rsyslog.port",
                     _("Server Port:"),
                     enabled=net_is_configured),
            ui.Divider("divider[1]"),
            ui.Label(
                "netconsole.label",
                _("Netconsole service allows a remote sys") +
                _("log daemon to record printk() messages")),
            ui.Entry("netconsole.address",
                     _("Server Address:"),
                     enabled=net_is_configured),
            ui.Entry("netconsole.port",
                     _("Server Port:"),
                     enabled=net_is_configured)
        ])

        page = ui.Page("page", ws)
        self.widgets.add(page)
        return page
Esempio n. 12
0
    def ui_content(self):
        ws = [
            ui.Header("header[0]", "CIM"),
            ui.Checkbox("cim.enabled", "Enable CIM"),
            ui.Divider("divider[0]"),
            ui.Header("header[1]", "CIM Password"),
            ui.ConfirmedEntry("cim.password", "Password:"******"page", ws)
        self.widgets.add(ws)
        return page
Esempio n. 13
0
    def ui_content(self):
        ws = [ui.Header("header", "Remote Storage"),
              ui.Entry("iscsi.initiator_name", "iSCSI Initiator Name:",
                       align_vertical=True),
              ui.Divider("divider[0]"),
              ui.Entry("nfsv4.domain", "NFSv4 Domain (example.redhat.com):",
                       align_vertical=True),
              ]

        page = ui.Page("page", ws)
        self.widgets.add(page)
        return page
Esempio n. 14
0
 def ui_content(self):
     ws = [ui.Header("header[0]", "Monitoring Configuration"),
           ui.Label("label", "Collectd gathers statistics " +
                    "about the system and can be used to find " +
                    "performance bottlenecks and predict future " +
                    "system load."),
           ui.Entry("collectd.address", "Server Address:"),
           ui.Entry("collectd.port", "Server Port:"),
           ]
     page = ui.Page("page", ws)
     self.widgets.add(page)
     return page
Esempio n. 15
0
    def ui_content(self):
        ws = [
            ui.Header("header[0]", "SNMP"),
            ui.Checkbox("snmp.enabled", "Enable SNMP"),
            ui.Divider("divider[0]"),
            ui.Header("header[1]", "SNMP Password"),
            ui.ConfirmedEntry("snmp.password", "Password:"******"page", ws)
        self.widgets.add(ws)
        return page
Esempio n. 16
0
    def ui_content(self):
        """Describes the UI this plugin requires
        This is an ordered list of (path, widget) tuples.
        """
        kbd = utils.system.Keyboard()
        ws = [ui.Header("header", "Keyboard Layout Selection"),
              ui.Table("keyboard.layout", "", "Available Keyboard Layouts",
                       kbd.available_layouts()),
              ]

        page = ui.Page("page", ws)
        self.widgets.add(page)
        return page
Esempio n. 17
0
 def ui_content(self):
     ws = [
         ui.Header("header[0]", "Add Engine to Window AD"),
         ui.Label(
             "label",
             "When add your Engine to domain,you can login the Virtual Desktop as normal user."
         ),
         ui.Entry("collectd.address", "Domain:"),
         ui.Entry("collectd.port", "port:"),
     ]
     page = ui.Page("page", ws)
     self.widgets.add(page)
     return page
    def ui_content(self):
        ws = [
            ui.Header("header[0]", _("Support Info")),
            ui.Label("support.info", _("Select one of the logfiles below.")),
            ui.Divider("divider[0]"),
            ui.Table("support.logfile", "", _("Available Logfiles"),
                     self.__debugfiles_to_offer()),
        ]

        page = ui.Page("page", ws)
        page.buttons = []
        self.widgets.add(page)
        return page
Esempio n. 19
0
 def ui_content(self):
     ws = [
         ui.Header("header[0]", "Add Hostname"),
         ui.Label(
             "label",
             "When you don't have a domain , please add your Node hostname to the Engine."
         ),
         ui.Entry("collectd.ip", "Node ip address:"),
         ui.Entry("collectd.hostname", "Node hostname:"),
     ]
     page = ui.Page("page", ws)
     self.widgets.add(page)
     return page
Esempio n. 20
0
    def ui_content(self):
        ws = [
            ui.Header("header[0]", "Remote Access"),
            ui.Checkbox("ssh.pwauth", "Enable SSH password authentication"),
            ui.Header("header[1]", "Strong Random Number Generator"),
            ui.Checkbox("strongrng.disable_aesni", "Disable AES-NI"),
            ui.Entry("strongrng.num_bytes", "Bytes Used:"),
            ui.Header("header[2]", "Password for the admin user"),
            ui.ConfirmedEntry("passwd.admin.password", "Password:"******"page", ws)
        self.widgets.add(page)
        return page
Esempio n. 21
0
    def ui_content(self):
        ws = [
            ui.Header("header[0]", "Puppet Configuration"),
            ui.Checkbox("puppet.enabled", "Enable Puppet"),
            ui.Entry("puppet.server", "Puppet Server:"),
            ui.Entry("puppet.certname", "Puppet Certificate Name"),
            ui.Divider("divider[0]"),
        ]

        page = ui.Page("page", ws)
        page.buttons = [ui.SaveButton("action.register", "Save & Run")]

        self.widgets.add(page)
        return page
Esempio n. 22
0
 def ui_content(self):
     kbd = utils.Keyboard()
     ws = [
         ui.Header("header[0]", "Keyboard Layout Selection"),
         ui.Table("keyboard.layout", "Available Keyboard Layouts", "",
                  kbd.available_layouts()),
     ]
     self.widgets.add(ws)
     page = ui.Page("keyboard", ws)
     page.buttons = [
         ui.Button("button.quit", "Quit"),
         ui.Button("button.next", "Continue")
     ]
     return page
Esempio n. 23
0
    def ui_content(self):
        """Describes the UI this plugin requires
        This is an ordered list of (path, widget) tuples.
        """
        # Function to expand all "keywords" to the same length
        aligned = lambda l: l.ljust(13)

        # Network related widgets, appearing in one row
        network_widgets = [
            ui.KeywordLabel("networking", aligned(_("Networking: "))),
            ui.Label("networking.bridge", ""),
        ]

        action_widgets = [
            ui.Button("action.lock", _("Lock")),
            ui.Button("action.logoff", _("Log Off")),
            ui.Button("action.restart", _("Restart")),
            ui.Button("action.poweroff", _("Power Off"))
        ]

        widgets = [ui.Header("header[0]", _("System Information"))]

        if self.model()["managed_by"]:
            widgets += [
                ui.KeywordLabel("managed_by", aligned(_("Managed by: ")))
            ]

        widgets += [
            ui.KeywordLabel("status", aligned(_("Status: "))),
            ui.Divider("divider[0]"),
            ui.Row("row[0]", network_widgets),
            ui.Label("networking.ip", ""),
            ui.Divider("divider[1]"),
            ui.KeywordLabel("logs", aligned(_("Logs: "))),
            ui.KeywordLabel("libvirt.num_guests", aligned(_("Running VMs: "))),
            ui.Divider("divider[2]"),
            ui.Label("support.hint", _("Press F8 for support menu")),
            ui.Row("row[1]", [
                ui.Button("action.hostkey", _("View Host Key")),
                ui.Button("action.cpu_details", _("View CPU Details"))
            ]),
            ui.Button("action.console", "Set Console Path"),
            ui.Row("row[2]", action_widgets),
        ]

        self.widgets.add(widgets)

        page = ui.Page("page", widgets)
        page.buttons = []
        return page
    def ui_content(self):
        page_title = \
            _("Please select the disk(s) to use for installation of %s") \
            % self.application.product.PRODUCT_SHORT

        other_device = self._model.get("installation.device.custom", "")
        devices = self.storage_discovery.all_devices_for_ui_table()

        ws = [ui.Header("header[0]", page_title)]

        tbl_head = self.storage_discovery.tbl_tpl.format(bus="Location",
                                                         name="Device Name",
                                                         size="Size (GB)")
        if devices:
            ws += [
                ui.Table("installation.device.current",
                         "",
                         tbl_head,
                         devices,
                         height=3,
                         multi=True),
                ui.Button("button.other_device",
                          "Other Device: %s" % other_device),
                ui.Divider("divider[0]"),
                DeviceDetails("installation.device.details", self,
                              _("(No device)"))
            ]
        else:
            ws += [
                ui.Label("installation.no_device",
                         _("No Valid Install Devices Detected"))
            ]

        page = ui.Page("installation", ws)
        page.buttons = [
            ui.QuitButton("button.quit", _("Quit")),
            ui.Button("button.back", _("Back")),
            ui.SaveButton("button.next", _("Continue"))
        ]

        self.widgets.add(page)

        # We are directly connecting to the table's on_change event
        # The tables on_change event is fired (in the multi-case)
        # when the highlighted entry is changed.
        table = self.widgets["installation.device.current"]
        table.on_change.connect(self.__update_details)

        return page
Esempio n. 25
0
    def ui_content(self):
        """Describes the UI this plugin requires
        This is an ordered list of (path, widget) tuples.
        """
        ws = [ui.Header("diagnostic._header", "Diagnostic Utilities"),
              ui.Label("diagnostic.info", "Select one of the tools below."),
              ui.Divider("diagnostic.divider"),
              ui.Table("diagnostic.tools", "", "Available diagnostics",
                       self.__diagnostics(), height=min(
                           len(self.__diagnostics()), 4)),
              ]

        page = ui.Page("page", ws)
        self.widgets.add(page)
        return page
Esempio n. 26
0
 def ui_content(self):
     ws = [
         ui.Header(
             "header[0]", "%s is beeing installed ..." %
             self.application.product.PRODUCT_SHORT),
         ui.Divider("divider[0]"),
         ui.ProgressBar("progressbar", 0),
         ui.Divider("divider[1]"),
         ui.Label("log", ""),
     ]
     self.widgets.add(ws)
     page = ui.Page("progress", ws)
     page.buttons = []
     self._worker.start()
     return page
Esempio n. 27
0
 def ui_content(self):
     kbd = system.Keyboard()
     c = kbd.get_current()
     self.logger.debug("Current layout: %s" % c)
     ws = [ui.Header("header[0]", "Keyboard Layout Selection"),
           ui.Table("keyboard.layout", "", "Available Keyboard Layouts",
                    kbd.available_layouts(), c),
           ui.Label("label[0]", "(Hit Enter to select a layout)")
           ]
     self.widgets.add(ws)
     page = ui.Page("keyboard", ws)
     page.buttons = [ui.QuitButton("button.quit", "Quit"),
                     ui.Button("button.back", "Back"),
                     ui.SaveButton("button.next", "Continue")]
     return page
Esempio n. 28
0
    def ui_content(self):
        ws = [ui.Header("header[0]", _("Storage Volumes")),
              ui.KeywordLabel("storage.drive_size", "Drive size: ")]

        if not self.__enough_free_space():
            ws.extend([ui.Notice("space.notice",
                                 "Not enough space! Needs at least "
                                 "%sMB for installation, %sMB "
                                 "available" % (str(self._min_drive_size),
                                                self._drive_size))])

        if not self._fill:
            ws.extend([ui.KeywordLabel("storage.free_space",
                                       "Remaining Space: ")])

        ws.extend([ui.Label("label[0]", "Please enter the sizes for the " +
                            "following partitions in MB"),
                   ui.Checkbox("storage.fill_data", "Fill disk with Data " +
                               "partition", True),
                   ui.Entry("storage.efi_size", _("UEFI/Bios:"),
                            enabled=False),
                   ui.Entry("storage.root_size", _("Root & RootBackup:"),
                            enabled=False),
                   ui.Label("label[1]", _("(2 partitions at %sMB each)") %
                            self.model().get("storage.root_size")),
                   ui.Divider("divider[2]"),
                   ui.Entry("storage.swap_size", _("Swap MB:")),
                   ui.Entry("storage.config_size", _("Config MB:")),
                   ui.Entry("storage.logging_size", _("Logging MB:")),
                   ui.Entry("storage.data_size", _("Data MB:"),
                            enabled=not self._fill),
                   ])

        if not self._fill:
            ws.extend([ui.Label("label[2]", "(-1 fills all free space)")])

        self.widgets.add(ws)
        page = ui.Page("storage", ws)
        page.buttons = [ui.QuitButton("button.quit", _("Quit")),
                        ui.Button("button.back", _("Back"))]

        if self.__enough_free_space():
            can_continue = self.model() and self.__calculate_free_space() >= 0
            page.buttons.extend([ui.SaveButton("button.next",
                                               _("Continue"),
                                               enabled=can_continue)])

        return page
Esempio n. 29
0
 def ui_content(self):
     method = "Installing"
     product = self.application.product.PRODUCT_SHORT
     ws = [ui.Header("header[0]", "%s %s" % (method, product)),
           ui.Divider("divider[0]"),
           ui.ProgressBar("progressbar", 0),
           ui.Divider("divider[1]"),
           ui.Label("log", ""),
           ui.Divider("divider[2]"),
           ui.Button("action.reboot", "Reboot")
           ]
     self.widgets.add(ws)
     page = ui.Page("progress", ws)
     page.buttons = []
     self._worker.start()
     return page
Esempio n. 30
0
 def ui_content(self):
     ws = [ui.Header("header[0]",
                     "Require a password for the admin user?"),
           ui.Divider("divider[0]"),
           ui.PasswordEntry("admin.password", "Password:"******"admin.password_confirmation",
                            "Confirm Password:"******"divider[1]"),
           ui.Label("password.info", "")
           ]
     self.widgets.add(ws)
     page = ui.Page("password", ws)
     page.buttons = [ui.QuitButton("button.quit", "Quit"),
                     ui.Button("button.back", "Back"),
                     ui.SaveButton("button.next", "Install")]
     return page