summaryrefslogtreecommitdiffstats
path: root/drop.sh
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2014-04-13 22:06:00 +0200
committerFlorian Pritz <bluewind@xinu.at>2014-04-13 22:06:00 +0200
commit997b528911b906a9559ac030b1a7a789401f4d13 (patch)
tree93630a005db6754141ab20f80ce3d121975240fb /drop.sh
parent2469d49396a13aeef8e26d8f12162e3be91c445a (diff)
downloadbin-997b528911b906a9559ac030b1a7a789401f4d13.tar.gz
bin-997b528911b906a9559ac030b1a7a789401f4d13.tar.xz
remove unused scripts
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'drop.sh')
-rwxr-xr-xdrop.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/drop.sh b/drop.sh
deleted file mode 100755
index 8519e19..0000000
--- a/drop.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-#----------------------------------------------------
-# Author: Florian "Bluewind" Pritz <flo@xssn.at>
-#
-# Licensed under WTFPL v2
-# (see COPYING for full license text)
-#
-#----------------------------------------------------
-# called by incrond to manage ~/drop
-#----------------------------------------------------
-for file; do
- case $(file -b --mime-type "$file") in
- application/x-bittorrent)
- chmod 644 "$file"
- mv "$file" /mnt/mistral/flo/torrent/watch
- transmission-remote mistral:9091 -a "/mnt/mistral/flo/torrent/watch/$(basename "$file")"
- ;;
- *)
- # nothing
- ;;
- esac
-done