Server IP : 127.0.0.2 / Your IP : 18.222.188.103 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/augeas/lenses/dist/ |
Upload File : |
(* Module: Crypttab Parses /etc/crypttab from the cryptsetup package. Author: Frédéric Lespez <frederic.lespez@free.fr> About: Reference This lens tries to keep as close as possible to `man crypttab` where possible. About: License This file is licensed under the LGPL v2+, like the rest of Augeas. About: Lens Usage Sample usage of this lens in augtool * Create a new entry for an encrypted block devices > ins 01 after /files/etc/crypttab/*[last()] > set /files/etc/crypttab/01/target crypt_sda2 > set /files/etc/crypttab/01/device /dev/sda2 > set /files/etc/crypttab/01/password /dev/random > set /files/etc/crypttab/01/opt swap * Print the entry applying to the "/dev/sda2" device > print /files/etc/crypttab/01 * Remove the entry applying to the "/dev/sda2" device > rm /files/etc/crypttab/*[device="/dev/sda2"] About: Configuration files This lens applies to /etc/crypttab. See <filter>. *) module Crypttab = autoload xfm (************************************************************************ * Group: USEFUL PRIMITIVES *************************************************************************) (* Group: Separators *) (* Variable: sep_tab *) let sep_tab = Sep.tab (* Variable: comma *) let comma = Sep.comma (* Group: Generic primitives *) (* Variable: eol *) let eol = Util.eol (* Variable: comment *) let comment = Util.comment (* Variable: empty *) let empty = Util.empty (* Variable: word *) let word = Rx.word (* Variable: optval *) let optval = /[A-Za-z0-9_.:-]+/ (* Variable: target *) let target = Rx.device_name (* Variable: fspath *) let fspath = Rx.fspath (************************************************************************ * Group: ENTRIES *************************************************************************) (************************************************************************ * View: comma_sep_list * A comma separated list of options (opt=value or opt) *************************************************************************) let comma_sep_list (l:string) = let value = [ label "value" . Util.del_str "=" . store optval ] in let lns = [ label l . store word . value? ] in Build.opt_list lns comma (************************************************************************ * View: record * A crypttab record *************************************************************************) let record = [ seq "entry" . [ label "target" . store target ] . sep_tab . [ label "device" . store fspath ] . (sep_tab . [ label "password" . store fspath ] . ( sep_tab . comma_sep_list "opt")? )? . eol ] (* * View: lns * The crypttab lens *) let lns = ( empty | comment | record ) * (* Variable: filter *) let filter = (incl "/etc/crypttab") let xfm = transform lns filter (* coding: utf-8 *)