From 936d56eeaa5d2b759797bcb12646b7924befc5c0 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Fri, 27 Mar 2015 22:26:49 +0900 Subject: [PATCH] remove obsolete script Signed-off-by: Nico Schottelius --- vfat_to_nfs | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100755 vfat_to_nfs diff --git a/vfat_to_nfs b/vfat_to_nfs deleted file mode 100755 index a5680e1..0000000 --- a/vfat_to_nfs +++ /dev/null @@ -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 -