conserver/conserver.cf/test.cf
2018-05-28 09:34:15 -07:00

44 lines
573 B
CFEngine3

# dummy conserver config file
#
default full {
rw *;
}
default * {
logfile /tmp/&;
timestamp "";
include full;
}
break 5 {
string "\rtest\r";
}
# list of consoles we serve
console shell {
master localhost;
timestamp 5;
type exec;
exec "";
}
console bash {
master localhost;
timestamp 2;
type exec;
exec /usr/local/bin/bash;
}
console web {
master localhost;
type host;
host www.conserver.com;
port 80;
}
console b {
master localhost;
type device;
device /dev/ttyb;
baud 9600;
parity none;
}
# list of clients we allow
access * {
trusted 127.0.0.1;
}