Dre4m Shell
Server IP : 85.214.239.14  /  Your IP : 3.145.37.211
Web Server : Apache/2.4.62 (Debian)
System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : www-data ( 33)
PHP Version : 7.4.18
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /proc/3/root/usr/share/augeas/lenses/dist/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /proc/3/root/usr/share/augeas/lenses/dist/modprobe.aug
(*
Module: Modprobe
  Parses /etc/modprobe.conf and /etc/modprobe.d/*

Original Author: David Lutterkort <lutter@redhat.com>

Author: Raphael Pinson <raphink@gmail.com>

About: Reference
  This lens tries to keep as close as possible to `man 5 modprobe.conf` where possible.

About: License
   This file is licenced under the LGPL v2+, like the rest of Augeas.

About: Lens Usage
   To be documented

About: Configuration files
   This lens applies to /etc/modprobe.conf and /etc/modprobe.d/*. See <filter>.
*)

module Modprobe =
autoload xfm

(************************************************************************
 * Group:                 USEFUL PRIMITIVES
 *************************************************************************)

(* View: comment *)
let comment = Util.comment

(* View: empty *)
let empty = Util.empty

(* View: sep_space *)
let sep_space = del /([ \t]|(\\\\\n))+/ " "

(* View: sto_no_spaces *)
let sto_no_spaces = store /[^# \t\n\\\\]+/

(* View: sto_no_colons *)
let sto_no_colons = store /[^:# \t\n\\\\]+/

(* View: sto_to_eol *)
let sto_to_eol = store /(([^# \t\n\\\\][^#\n\\\\]*[ \t]*\\\\[ \t]*\n[ \t]*)*([^# \t\n\\\\][^#\n\\\\]*[^# \t\n\\\\]|[^# \t\n\\\\])|[^# \t\n\\\\])/

(* View: alias *)
let alias =
  let modulename = [ label "modulename" . sto_no_spaces ] in
  Build.key_value_line_comment "alias" sep_space
                       (sto_no_spaces . sep_space . modulename)
                       comment

(************************************************************************
 * Group:                 ENTRY TYPES
 *************************************************************************)

(* View: options *)
let options =
  let opt_value = /[^#" \t\n\\\\]+|"[^#"\n\\\\]*"/ in
  let option = [ key Rx.word . (del /[ \t]*=[ \t]*/ "=" . store opt_value)? ] in
  [ key "options" . sep_space . sto_no_spaces
                  . (sep_space . option)* . Util.comment_or_eol ]

(* View: install_remove *)
let kv_line_command (kw:regexp) =
  let command = [ label "command" . sto_to_eol ] in
  [ key kw . sep_space . sto_no_spaces
                         . sep_space . command . Util.comment_or_eol ]

(* View: blacklist *)
let blacklist = Build.key_value_line_comment "blacklist" sep_space
                       sto_no_spaces
                       comment

(* View: config *)
let config = Build.key_value_line_comment "config" sep_space
                       (store /binary_indexes|yes|no/)
                       comment

(* View: softdep *)
let softdep =
  let premod  = [ label "pre" . sep_space . sto_no_colons ] in
    let pre   = sep_space . Util.del_str "pre:" . premod+ in
  let postmod = [ label "post" . sep_space . sto_no_colons ] in
    let post  = sep_space . Util.del_str "post:" . postmod+ in
  [ key "softdep" . sep_space . sto_no_colons . pre? . post?
    . Util.comment_or_eol ]

(* View: entry *)
let entry = alias
          | options
          | kv_line_command /install|remove/
          | blacklist
          | config
          | softdep

(************************************************************************
 * Group:                 LENS AND FILTER
 *************************************************************************)

(* View: lns *)
let lns = (comment|empty|entry)*

(* View: filter *)
let filter = (incl "/etc/modprobe.conf") .
  (incl "/etc/modprobe.d/*").
  (incl "/etc/modprobe.conf.local").
  Util.stdexcl

let xfm = transform lns filter

Anon7 - 2022
AnonSec Team