Re: Fwd: [Cooker] File named "3"

2001-04-03 Thread Sebastian Dransfeld
On 3 Apr 2001, Chmouel Boudjnah wrote: > Sebastian Dransfeld <[EMAIL PROTECTED]> writes: > > > On 3 Apr 2001, Chmouel Boudjnah wrote: > > > > > Sebastian Dransfeld <[EMAIL PROTECTED]> writes: > > > > > > > root@s186b:~# [ "$SECURITY" -gt 3 ] > > > > [: : integer expression expected > > > > root@s

Re: Fwd: [Cooker] File named "3"

2001-04-03 Thread Chmouel Boudjnah
Sebastian Dransfeld <[EMAIL PROTECTED]> writes: > On 3 Apr 2001, Chmouel Boudjnah wrote: > > > Sebastian Dransfeld <[EMAIL PROTECTED]> writes: > > > > > root@s186b:~# [ "$SECURITY" -gt 3 ] > > > [: : integer expression expected > > > root@s186b:~# echo $SECURITY > > > > > > root@s186b:~# > > > >

RE: Fwd: [Cooker] File named "3"

2001-04-03 Thread Andrej Borsenkow
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Sebastian Dransfeld > Sent: Tuesday, April 03, 2001 7:35 PM > To: [EMAIL PROTECTED] > Subject: Re: Fwd: [Cooker] File named "3" > > > On 3 Apr 2001, Chm

Re: Fwd: [Cooker] File named "3"

2001-04-03 Thread Sebastian Dransfeld
On 3 Apr 2001, Chmouel Boudjnah wrote: > Sebastian Dransfeld <[EMAIL PROTECTED]> writes: > > > root@s186b:~# [ "$SECURITY" -gt 3 ] > > [: : integer expression expected > > root@s186b:~# echo $SECURITY > > > > root@s186b:~# > > try with double brace [[ "$SECURITY" -gt 3 ]] > That works, but shoul

Re: Fwd: [Cooker] File named "3"

2001-04-03 Thread Chmouel Boudjnah
Sebastian Dransfeld <[EMAIL PROTECTED]> writes: > On 3 Apr 2001, Chmouel Boudjnah wrote: > > > Sebastian Dransfeld <[EMAIL PROTECTED]> writes: > > > > > On 3 Apr 2001, Chmouel Boudjnah wrote: > > > > > > > Digital Wokan <[EMAIL PROTECTED]> writes: > > > > > > > > > I deleted the original and jus

Re: Fwd: [Cooker] File named "3"

2001-04-03 Thread Chmouel Boudjnah
Sebastian Dransfeld <[EMAIL PROTECTED]> writes: > The script should check if $SECURITY is set. i definitively hate shell :-( -- MandrakeSoft Inc http://www.chmouel.org --Chmouel

Re: Fwd: [Cooker] File named "3"

2001-04-03 Thread Sebastian Dransfeld
On 3 Apr 2001, Chmouel Boudjnah wrote: > Sebastian Dransfeld <[EMAIL PROTECTED]> writes: > > > On 3 Apr 2001, Chmouel Boudjnah wrote: > > > > > Digital Wokan <[EMAIL PROTECTED]> writes: > > > > > > > I deleted the original and just kept this fix. Problem is, somebody cut > > > > out the name of

Re: Fwd: [Cooker] File named "3"

2001-04-03 Thread Chmouel Boudjnah
Sebastian Dransfeld <[EMAIL PROTECTED]> writes: > On 3 Apr 2001, Chmouel Boudjnah wrote: > > > Digital Wokan <[EMAIL PROTECTED]> writes: > > > > > I deleted the original and just kept this fix. Problem is, somebody cut > > > out the name of the file being edited here. So I need a fix for this

Re: Fwd: [Cooker] File named "3"

2001-04-03 Thread Sebastian Dransfeld
On 3 Apr 2001, Chmouel Boudjnah wrote: > Digital Wokan <[EMAIL PROTECTED]> writes: > > > I deleted the original and just kept this fix. Problem is, somebody cut > > out the name of the file being edited here. So I need a fix for this > > fix. :) > > ok it fixed in last initscripts. > The scrip

Re: Fwd: [Cooker] File named "3"

2001-04-03 Thread Chmouel Boudjnah
Digital Wokan <[EMAIL PROTECTED]> writes: > I deleted the original and just kept this fix. Problem is, somebody cut > out the name of the file being edited here. So I need a fix for this > fix. :) ok it fixed in last initscripts. -- MandrakeSoft Inc http://www.chmouel.org

Re: [Cooker] File named "3"

2001-04-03 Thread Chmouel Boudjnah
Shalrath <[EMAIL PROTECTED]> writes: > On Monday 02 April 2001 19:30, you wrote: > > Hi, > > > > Could some one repost an earlier email which indicated how to fix the > > problem of a file name '3' being created in the current directory when > > changing from a regular user to root using 'su'. >

SECURITY and SECURE_LEVEL (was: [Cooker] File named "3")

2001-04-03 Thread Sebastian Dransfeld
Why does it exist to variables that seems to do about the same job? seb On Tue, 3 Apr 2001, Thomas Mangin, Systems wrote: > | > > if [ "$SECURE_TMP" = "yes" -o "$SECURE_TMP" = "1" -o "$SECURE_TMP" = > "YES" > | > > -o "$SECURE_TMP" > 3 ];then > | > > > | > > and I changed it to: > | > > > | > >

Re: Fwd: [Cooker] File named "3"

2001-04-03 Thread Thomas Mangin, Systems
| > > if [ "$SECURE_TMP" = "yes" -o "$SECURE_TMP" = "1" -o "$SECURE_TMP" = "YES" | > > -o "$SECURE_TMP" > 3 ];then | > > | > > and I changed it to: | > > | > > if [ "$SECURE_TMP" = "yes" -o "$SECURE_TMP" = "1" -o "$SECURE_TMP" = "YES" | > > ];then | > > | > > not sure if this is correct, but now I

Re: Fwd: [Cooker] File named "3"

2001-04-03 Thread Sebastian Dransfeld
On Tue, 3 Apr 2001, Xavier Bertou wrote: > > if [ "$SECURE_TMP" = "yes" -o "$SECURE_TMP" = "1" -o "$SECURE_TMP" = "YES" > > -o "$SECURE_TMP" > 3 ];then > > > > and I changed it to: > > > > if [ "$SECURE_TMP" = "yes" -o "$SECURE_TMP" = "1" -o "$SECURE_TMP" = "YES" > > ];then > > > > not sure if th

Re: Fwd: [Cooker] File named "3"

2001-04-02 Thread David Eastcott
its /etc/profile.d/tmpdir.sh Also see post from Xavier Bertou Dave On Mon, 02 Apr 2001, you wrote: > I deleted the original and just kept this fix. Problem is, somebody cut > out the name of the file being edited here. So I need a fix for this > fix. :) > > Xavier Bertou wrote: > > > > >

Re: Fwd: [Cooker] File named "3"

2001-04-02 Thread Digital Wokan
I deleted the original and just kept this fix. Problem is, somebody cut out the name of the file being edited here. So I need a fix for this fix. :) Xavier Bertou wrote: > > > if [ "$SECURE_TMP" = "yes" -o "$SECURE_TMP" = "1" -o "$SECURE_TMP" = "YES" > > -o "$SECURE_TMP" > 3 ];then > > > > and

Re: Fwd: [Cooker] File named "3"

2001-04-02 Thread Xavier Bertou
> if [ "$SECURE_TMP" = "yes" -o "$SECURE_TMP" = "1" -o "$SECURE_TMP" = "YES" > -o "$SECURE_TMP" > 3 ];then > > and I changed it to: > > if [ "$SECURE_TMP" = "yes" -o "$SECURE_TMP" = "1" -o "$SECURE_TMP" = "YES" > ];then > > not sure if this is correct, but now I don't get the "3" file showing

Fwd: [Cooker] File named "3"

2001-04-02 Thread David Eastcott
TMP" > 3 ];then and I changed it to: if [ "$SECURE_TMP" = "yes" -o "$SECURE_TMP" = "1" -o "$SECURE_TMP" = "YES" ];then not sure if this is correct, but now I don't get the "3" file showing up any more. regards

Re: [Cooker] File named "3"

2001-04-02 Thread Shalrath
On Monday 02 April 2001 19:30, you wrote: > Hi, > > Could some one repost an earlier email which indicated how to fix the > problem of a file name '3' being created in the current directory when > changing from a regular user to root using 'su'. > > TIA > Dave Interesting, ive noticed that happe

[Cooker] File named "3"

2001-04-02 Thread David Eastcott
Hi, Could some one repost an earlier email which indicated how to fix the problem of a file name '3' being created in the current directory when changing from a regular user to root using 'su'. TIA Dave