diff options
| author | Danilo Macrì <danix@danix.xyz> | 2026-04-03 12:20:05 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-03 12:20:05 -0400 |
| commit | a7976bfe662097273e91471e2609df2d30120656 (patch) | |
| tree | c54b2a6d28a89333b771bdee05e6baa45fe0c94f /syncthing/doinst.sh | |
| parent | 1045963959ddfb697898fa90476f837aae4e2881 (diff) | |
| parent | ebb26eac2948e02def3c7ac1ac23c4ecd345a5a7 (diff) | |
| download | my-slackbuilds-a7976bfe662097273e91471e2609df2d30120656.tar.gz my-slackbuilds-a7976bfe662097273e91471e2609df2d30120656.zip | |
Merge pull request #5 from danixland/restructure-flat-layout
repo: flatten layout — move packages to root, extras to .extras/
Diffstat (limited to 'syncthing/doinst.sh')
| -rw-r--r-- | syncthing/doinst.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/syncthing/doinst.sh b/syncthing/doinst.sh new file mode 100644 index 0000000..9d663d4 --- /dev/null +++ b/syncthing/doinst.sh @@ -0,0 +1,25 @@ +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... +} + +preserve_perms() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ -e $OLD ]; then + cp -a $OLD ${NEW}.incoming + cat $NEW > ${NEW}.incoming + mv ${NEW}.incoming $NEW + fi + config $NEW +} + +config etc/logrotate.d/syncthing.new +preserve_perms etc/rc.d/rc.syncthing.new |
