ssfs rev 62
No /sbin in chroot anymore with ssfs-busybox
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun Jun 12 23:13:14 2011 +0200 (2011-06-12) |
parents | e136f9af3729 |
children | 291d7b317507 |
files | ssfs-env ssfs-server |
line diff
1.1 --- a/ssfs-env Sun Jun 12 23:09:24 2011 +0200 1.2 +++ b/ssfs-env Sun Jun 12 23:13:14 2011 +0200 1.3 @@ -73,7 +73,7 @@ 1.4 echo "Matching files" && separator 1.5 find $HOME | grep -i $query 1.6 echo -e "\nMatching commands" && separator 1.7 - find /bin /sbin | grep -i $query 1.8 + find /bin | grep -i $query 1.9 echo "" ;; 1.10 *) 1.11 help ;;
2.1 --- a/ssfs-server Sun Jun 12 23:09:24 2011 +0200 2.2 +++ b/ssfs-server Sun Jun 12 23:13:14 2011 +0200 2.3 @@ -307,7 +307,7 @@ 2.4 # List of all system files. 2.5 gettext "Creating the list of files... " 2.6 cd $root && rm -f $state/vdisk.files 2.7 - for d in bin etc lib sbin 2.8 + for d in bin etc lib 2.9 do 2.10 find ./$d | sed s'/^.//' >> $state/vdisk.files 2.11 done