mirror of
https://github.com/bstansell/conserver.git
synced 2024-12-18 20:37:56 +00:00
30 lines
364 B
CFEngine3
30 lines
364 B
CFEngine3
# test conserver config file
|
|
default full {
|
|
rw *;
|
|
}
|
|
default * {
|
|
logfile ./&;
|
|
timestamp "";
|
|
include full;
|
|
}
|
|
break 5 {
|
|
string "\rtest\r";
|
|
}
|
|
console shell {
|
|
master localhost;
|
|
logfile ./&.log;
|
|
timestamp 5;
|
|
type exec;
|
|
exec "";
|
|
}
|
|
console shell2 {
|
|
master localhost;
|
|
logfile ./shell2.log;
|
|
timestamp 2;
|
|
type exec;
|
|
exec "";
|
|
}
|
|
access * {
|
|
trusted 127.0.0.1;
|
|
}
|