diff options
author | dsomero <xgizzmo@gmail.com> | 2010-05-20 23:41:14 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-21 00:52:58 -0500 |
commit | f44319a63aca0d2078ba8c3ff45f449d04511f2b (patch) | |
tree | 182906af3e7c99362326a4422ed7ddfe3cc50405 /system/motion/doinst.sh | |
parent | c84ab3f0a72efea6ffd22942a1dcf672bb4fd86e (diff) | |
download | slackbuilds-f44319a63aca0d2078ba8c3ff45f449d04511f2b.tar.gz |
system/motion: Removed (build failure)
Diffstat (limited to 'system/motion/doinst.sh')
-rw-r--r-- | system/motion/doinst.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/system/motion/doinst.sh b/system/motion/doinst.sh deleted file mode 100644 index 282b54a44c..0000000000 --- a/system/motion/doinst.sh +++ /dev/null @@ -1,15 +0,0 @@ -config() { - NEW="$1" - OLD="$(dirname $NEW)/$(basename $NEW .new)" - # If there's no config file by that name, mv it over: - if [ ! -r $OLD ]; then - mv $NEW $OLD - elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then - # toss the redundant copy - rm $NEW - fi - # Otherwise, we leave the .new copy for the admin to consider... -} - -config etc/motion-dist.conf.new - |