HEX
Server: Apache
System: Linux dinesh8189 5.15.98-grsec-sharedvalley-2.lc.el8.x86_64 #1 SMP Thu Mar 9 09:07:30 -03 2023 x86_64
User: cgmgerenciamento1 (814285)
PHP: 8.1.26
Disabled: apache_child_terminate,dl,escapeshellarg,escapeshellcmd,exec,link,mail,openlog,passthru,pcntl_alarm,pcntl_exec,pcntl_fork,pcntl_get_last_error,pcntl_getpriority,pcntl_setpriority,pcntl_signal,pcntl_signal_dispatch,pcntl_sigprocmask,pcntl_sigtimedwait,pcntl_sigwaitinfo,pcntl_strerror,pcntl_wait,pcntl_waitpid,pcntl_wexitstatus,pcntl_wifexited,pcntl_wifsignaled,pcntl_wifstopped,pcntl_wstopsig,pcntl_wtermsig,php_check_syntax,php_strip_whitespace,popen,proc_close,proc_open,shell_exec,symlink,system
Upload Files
File: //opt/puppetlabs/puppet/share/augeas/lenses/dist/tests/test_rsyncd.aug
module Test_rsyncd =

  let conf = "
# A more sophisticated example would be:

uid = nobody
	gid = nobody
use chroot = yes
max connections = 4
syslog facility = local5
pid file = /var/run/rsyncd.pid

[ftp]
  # this is a comment
  path = /var/ftp/./pub
  comment = whole ftp area (approx 6.1 GB)

   [cvs]
  ; comment with semicolon
  path = /data/cvs
  comment = CVS repository (requires authentication)
  auth users = tridge, susan # comment at EOL
  secrets file = /etc/rsyncd.secrets

"

  test Rsyncd.lns get conf =
    { ".anon"
      {}
      { "#comment" = "A more sophisticated example would be:" }
      {}
      { "uid" = "nobody" }
      { "gid" = "nobody" }
      { "use chroot" = "yes" }
      { "max connections" = "4" }
      { "syslog facility" = "local5" }
      { "pid file" = "/var/run/rsyncd.pid" }
      {}
    }
    { "ftp"
      { "#comment" = "this is a comment" }
      { "path" = "/var/ftp/./pub" }
      { "comment" = "whole ftp area (approx 6.1 GB)" }
      {}
    }
    { "cvs"
      { "#comment" = "comment with semicolon" }
      { "path" = "/data/cvs" }
      { "comment" = "CVS repository (requires authentication)" }
      { "auth users" = "tridge, susan"
        { "#comment" = "comment at EOL" }
      }
      { "secrets file" = "/etc/rsyncd.secrets" }
      {}
    }