mirror of
https://github.com/bstansell/conserver.git
synced 2024-12-22 06:07:49 +00:00
36 lines
441 B
CFEngine3
36 lines
441 B
CFEngine3
# test conserver config file
|
|
default full {
|
|
rw *;
|
|
}
|
|
default * {
|
|
logfile ./&;
|
|
timestamp "";
|
|
include full;
|
|
}
|
|
break 4 {
|
|
string "hiya there\r";
|
|
}
|
|
console shell {
|
|
master 127.0.0.1;
|
|
logfile ./&.log;
|
|
timestamp 5;
|
|
type exec;
|
|
exec "";
|
|
}
|
|
console shella {
|
|
master 127.0.0.1;
|
|
logfile ./&.log;
|
|
timestamp 5;
|
|
type exec;
|
|
exec "";
|
|
}
|
|
console shellb {
|
|
master 127.0.0.1;
|
|
logfile ./&.log;
|
|
type exec;
|
|
exec "";
|
|
}
|
|
access * {
|
|
trusted 127.0.0.1;
|
|
}
|