bit better to understand?
A
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Mark Murray
Sent: Friday, June 20, 2003 4:51 PM
To: Alex Ayala
Cc: [EMAIL PROTECTED]
Subject: Re: Email accounts on FreeBSD 5.1-RELEASE
"Alex Ayala" writes:
>
>
I got a question, if I want to create an email account on my Freebsd 5.1
box, but not let them have shell access do I just do a "adduser" and specify
/sbin/nologin?
Alex
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freeb
You can create a script like this:
--
#!/bin/sh
for i in `fstat /dev/acd0 | awk '{print $3}'`
do
kill -9 $i
#echo add deny all from any to $i >> /etc/ipfw.rules
done
---
that will kill all processes that using acd0
Maybe that helps.
aLex
-Original Message---