Browse Source

Clifford Wolf, Bernhard C. Schrenk:


			
			
				rocklinux
			
			
		
Clifford Wolf 20 years ago
parent
commit
3a2ab94bd4
2 changed files with 7 additions and 1 deletions
  1. +3
    -1
      package/base/00-dirtree/00-dirtree.conf
  2. +4
    -0
      package/base/00-dirtree/data.txt

+ 3
- 1
package/base/00-dirtree/00-dirtree.conf

@ -35,9 +35,11 @@ main_dt() {
elif [ "$a" = "m" ] ; then
echo "Create directory $b ..."
mkdir -p "$xroot/$b"
elif [ "$a" = "l" ] ; then
elif [ "$a" = "l" -o "$a" = "l$(( arch_sizeof_char_p * 8 ))" ] ; then
echo "Create symlink $b ($c) ..."
ln -fsn "$c" "$xroot/$b"
elif [ "$a" = "l64" ] ; then
true
else
echo "Syntax Error: $a $b $c" ; false
fi

+ 4
- 0
package/base/00-dirtree/data.txt

@ -125,7 +125,11 @@ l usr/var ../var
l var/spool/mail ../mail
l var/state/pkgtool ../adm
l64 lib64 lib
l64 usr/lib64 lib
chmod 0700 root
chmod ugo=rwxt tmp
chmod ugo=rwxt var/mail
chmod ugo=rwxt var/tmp

Loading…
Cancel
Save