| Server IP : 85.214.239.14 / Your IP : 216.73.216.178 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /usr/share/augeas/lenses/dist/tests/ |
Upload File : |
module Test_securetty =
(* basic test *)
let basic = "tty0\ntty1\ntty2\n"
(* declare the lens to test and the resulting tree *)
test Securetty.lns get basic =
{ "1" = "tty0" }
{ "2" = "tty1" }
{ "3" = "tty2" }
(* complete test *)
let complete = "# some comment
tty0
# X11 display
:0.0
console # allow root from console
"
(* declare the lens to test and the resulting tree *)
test Securetty.lns get complete =
{ "#comment" = "some comment" }
{}
{ "1" = "tty0" }
{ "#comment" = "X11 display" }
{ "2" = ":0.0" }
{}
{ "3" = "console"
{ "#comment" = "allow root from console" } }