remove obsolete script

Signed-off-by: Nico Schottelius <nico@freiheit.schottelius.org>
This commit is contained in:
Nico Schottelius 2015-03-27 22:26:49 +09:00
parent fb58b8a144
commit 936d56eeaa
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
#!/bin/sh
# convert vfat permissions to normal ones..
if [ -d "$1" ];then chmod 0700 "$1"
else chmod 0600 "$1"
fi
# could also be:
#if [ -d "$1" ];then chmod og-x "$1"
#else chmod a-x "$1"
#fi