[9fans] revision control system or SCM of Plan 9 sources

2010-04-12 Thread Boo
Hi folks, Is there any revision control system or SCM of Plan 9 sources? I would like to read changesets, but don't know where I can find them. Thanks.

Re: [9fans] using usb

2010-04-12 Thread antonio....@gmail.com
I reinstalled with a new iso before to read your mail. With the new installation I can mount one old pendrive (128mb) with the new ones I got this: mount: mount /n/sdU2.0: unknown format and in the screen like a kernel message: usb/disk... disk: reset: device is detached (My computer is an old

Re: [9fans] using usb

2010-04-12 Thread Francisco J Ballesteros
does your name space mount /srv/usb ? I mean, does it mount the files served from usbd? I'll take a look to usbfat in any case. On Mon, Apr 12, 2010 at 11:30 AM, antonio@gmail.com antonio@gmail.com wrote: I reinstalled with a new iso before to read your mail. With the new installation

Re: [9fans] 9vx patch to read environment var PLAN9

2010-04-12 Thread Francisco J Ballesteros
you could also use a script to call 9vx as you please. On Mon, Apr 12, 2010 at 5:22 AM, EBo e...@sandien.com wrote: Why isn't 9vx -r yourdir good enough? it is if you want to force all users to specify the root directory every single time they run 9vx, or if you want to use an alternative

Re: [9fans] 9vx patch to read environment var PLAN9

2010-04-12 Thread EBo
Francisco J Ballesteros n...@lsub.org said: you could also use a script to call 9vx as you please. That is what I did for the first prototype. I thought this would be a beeter solution. Out of curiosity, have I hit a nerve or something. Have I somehow offended? I'm just a bit confused by

Re: [9fans] /sys/lib/newuser patch

2010-04-12 Thread erik quanstrom
Following on several peoples advice and a suggested code snippet from Erik I've added the following before the check for profile: if(! test -d $home){ echo no home directory $home exit homeless } if(! ls -ld $home [2=] | grep -s '^d-rwx.* '$user){ echo bad permissions

Re: [9fans] /sys/lib/newuser patch

2010-04-12 Thread EBo
erik quanstrom quans...@quanstro.net said: Following on several peoples advice and a suggested code snippet from Erik I've added the following before the check for profile: if(! test -d $home){ echo no home directory $home exit homeless } if(! ls -ld $home [2=] | grep -s

Re: [9fans] /sys/lib/newuser patch

2010-04-12 Thread hiro
On 4/12/10, erik quanstrom quans...@quanstro.net wrote: Following on several peoples advice and a suggested code snippet from Erik I've added the following before the check for profile: if(! test -d $home){ echo no home directory $home exit homeless } if(! ls -ld $home [2=] |

Re: [9fans] /sys/lib/newuser patch

2010-04-12 Thread erik quanstrom
Can't we then fix 9vx? (Stepping in to the tradition of concern of reception: This is not a rhetoric question) it's not 9vx, but #Z. and no, #Z is going to be limited by the underlying system. - erik

Re: [9fans] /sys/lib/newuser patch

2010-04-12 Thread EBo
you must also exit if ~ $user none. i'd also recommend aborting if ~ $home /. you don't want none making files in /. on a regular plan 9 system, that's no worry, but 9vx, ... I also tried to add test -z $user for the null string. It turns out that user=`{cat /dev/user} dies with the

Re: [9fans] revision control system or SCM of Plan 9 sources

2010-04-12 Thread Gabriel Díaz
Hello http://swtch.com/plan9history/ may be is sometthing on the lines you're looking for. slds. gabi - Original Message From: Boo boo...@gmail.com To: 9fans@9fans.net Sent: Mon, April 12, 2010 11:30:11 AM Subject: [9fans] revision control system or SCM of Plan 9 sources Hi

Re: [9fans] /sys/lib/newuser patch

2010-04-12 Thread Devon H. O'Dell
2010/4/12 erik quanstrom quans...@quanstro.net: 2010/4/12 hiro 23h...@googlemail.com: I have not the slightest idea about the complexity involved; And I think I misunderstand how much of plan9 is actually running in a sandbox. But what if we wanted to have a working security system for

Re: [9fans] 9vx patch to read environment var PLAN9

2010-04-12 Thread EBo
Skip Tavakkolian 9...@9netics.com said: but both of the hard-coded paths in 9vx main.c are obviously in RSC's home directories it's not hardcoded; What? The findroot code reads: static char* findroot(void) { static char cwd[1024]; int i; char buf[1024];

Re: [9fans] 9vx patch to read environment var PLAN9

2010-04-12 Thread Skip Tavakkolian
What? The findroot code reads: read the code again; findroot doesn't come into play.