That sounds very strange, PC-BSD has used CUPS as the primary printing backend for as long as I can remember. In fact, the installation procedure for cups-base creates the entries for the account with the following sh commands:
|
Code:
|
if ! pw groupshow cups; then pw groupadd cups -g 193; fi
if ! pw usershow cups; then pw useradd cups -g cups -u 193 -h - -d ${NONEXISTENT} -s /usr/sbin/nologin -c "CUPS Owner"; fi |
I don't use CUPS for printing, so my devfs.rules has no entries for it. In fact my old printer is hooked up to a headless OpenBSD box, which is setup using the BSD line printer daemon (lpd) rather then CUPS. Just a matter of personal taste, hehe.