X-Recipient: archive-cygwin AT delorie DOT com X-SWARE-Spam-Status: No, hits=-1.6 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,T_RP_MATCHES_RCVD,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: sourceware.org Message-ID: <31503700.post@talk.nabble.com> Date: Fri, 29 Apr 2011 02:02:06 -0700 (PDT) From: Fokke Nauta To: cygwin AT cygwin DOT com Subject: Re: Enable logging remote ssh contacts In-Reply-To: <20110429084439.GB27934@calimero.vinschen.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: <31478200 DOT post AT talk DOT nabble DOT com> <20110426132128 DOT GA6293 AT jethro DOT local DOT lan> <31478748 DOT post AT talk DOT nabble DOT com> <4DB6E0EA DOT 8070901 AT cygwin DOT com> <31481290 DOT post AT talk DOT nabble DOT com> <31484865 DOT post AT talk DOT nabble DOT com> <31485107 DOT post AT talk DOT nabble DOT com> <31490012 DOT post AT talk DOT nabble DOT com> <4DB889D9 DOT 2070703 AT laposte DOT net> <31495952 DOT post AT talk DOT nabble DOT com> <4DB9E086 DOT 30200 AT laposte DOT net> <31503455 DOT post AT talk DOT nabble DOT com> <20110429084439 DOT GB27934 AT calimero DOT vinschen DOT de> X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Corinna Vinschen-2 wrote: > > On Apr 29 01:21, Fokke Nauta wrote: >> Cyrille Lefevre wrote: >> > no, setfacl %-| >> > >> > (getfacl messages | echo group:Users:r--) | setfacl -m -f - messages >> > >> > PS : replace Users by the equivalents group on your system >> (Utilisateurs >> > in french under Vista, don't know under XP ?) >> > well, the last one : >> > v2$ id >> > uid=1000(Cyrille) gid=513(None) >> > groups=513(None),0(root),544(Administrateurs),545(Utilisateurs) >> > >> > >> > Regards, >> > >> > Cyrille Lefevre >> > >> >> Hi, >> >> I entered (getfacl messages | echo group:Users:r--) | setfacl -m -f - >> messages >> and got as result: Segmentation fault (core dumped) > > I can't reproduce the SEGV. However, your expression is wrong > anyway: > > - (getfacl messages | echo group:Users:r--) > > This expression only echos the "group:Users:r--" line, the output > of getfacl is simple lost since echo doesn't copy its stdin to > stdout. What you really want is this: > > (getfacl messages ; echo group:Users:r--) > > Note the semicolon instead of the pipe. > > - setfacl -m -f - > > This doesn't work. The -f option is always a set option and can't > combined with the -m option. So just use > > setfacl -f - > > - Did you notice Cyrille's hint about the name of the Users group? > It's not always Users, rather it is localized, for instance > "Utilisateurs" in french, "Benutzer" in german, etc. If you > use "Users" on a non-English system, you are probably out of luck. > > Fortunately you can also use the gid instead of the group name: > > (getfacl messages ; echo group:545:r--) | setfacl -f - > > > Corinna > Hi, Thanks. Entering "(getfacl messages ; echo group:545:r--) | setfacl -f -" starts up the help function of setfacl. Replacing the last dash by messages results in an error message. Yes, I noticed Cyrilles hint. I am working on an English machine and the command id shows the group Users indeed. Regards, Fokke -- View this message in context: http://old.nabble.com/Enable-logging-remote-ssh-contacts-tp31478200p31503700.html Sent from the Cygwin list mailing list archive at Nabble.com. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple