Changeset 891 for trunk/debian/rootfs/files/all/usr/sbin/PostInstall
- Timestamp:
- Dec 30, 2016, 1:00:58 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/debian/rootfs/files/all/usr/sbin/PostInstall
r890 r891 37 37 # file system access errors. 38 38 echo "I: Setting +rx on all directories in /" 39 find / -maxdepth 1 -mindepth 1 -type d -exec chmod +rx {} \; 39 find / -maxdepth 1 -mindepth 1 -type d \ 40 | grep -v "root" 41 | grep -v "lost+found" 42 | while read dir 43 do 44 chmod +rx ${dir} 45 done 40 46 41 47 echo -n "I: syncing disks...."
Note: See TracChangeset
for help on using the changeset viewer.