diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-08-15 12:46:51 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-08-15 12:46:51 +0700 |
commit | 5bfef9dd1fe3350c480ae5f5a1ed3eccfd9dac24 (patch) | |
tree | 254d85f853a074145ee8fdda9eeafaa509d9620c /network/ocsync/doinst.sh | |
parent | 00eefd3b1b7a14626b7cd9b4689f32a41b419020 (diff) |
network/ocsync: Removed (included in owncloud).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/ocsync/doinst.sh')
-rw-r--r-- | network/ocsync/doinst.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/network/ocsync/doinst.sh b/network/ocsync/doinst.sh deleted file mode 100644 index 53ac515548732..0000000000000 --- a/network/ocsync/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/ocsync/ocsync.conf.new" -config "etc/ocsync/ocsync_exclude.conf.new" |