~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to platform/scripts/mkJail.sh

  • Committer: drtomc
  • Date: 2007-12-05 21:24:33 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:5
Fix a bunch of glitches that Ivo and I found yesterday.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
for f in `cd /home/informatics/config/jail; find . -print`
10
10
do
11
 
    if [ -d "$f" ]
 
11
    if [ -d "/home/informatics/config/jail/$f" ]
12
12
    then
13
 
        mkdir "jails/$usr/$f"
 
13
        mkdir "/home/informatics/jails/$usr/$f"
14
14
    else
15
 
        ln "$f" "jails/$usr/$f"
 
15
        ln "/home/informatics/config/jail/$f" "/home/informatics/jails/$usr/$f"
16
16
    fi
17
17
done
18
18