From ebb26eac2948e02def3c7ac1ac23c4ecd345a5a7 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Fri, 3 Apr 2026 18:17:29 +0200 Subject: repo: flatten layout — move packages to root, extras to .extras/ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Move all packages from SlackBuilds/ to repo root - Move hooks/, docs/, nvchecker.toml to .extras/ - Update CLAUDE.md and README.md to reflect new structure Co-Authored-By: Claude Sonnet 4.6 --- SlackBuilds/syncthing/rc.syncthing | 53 -------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 SlackBuilds/syncthing/rc.syncthing (limited to 'SlackBuilds/syncthing/rc.syncthing') diff --git a/SlackBuilds/syncthing/rc.syncthing b/SlackBuilds/syncthing/rc.syncthing deleted file mode 100644 index 730e638..0000000 --- a/SlackBuilds/syncthing/rc.syncthing +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh - -# Copyright 2016, Sebastian Arcus, UK -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -SYNCTHING_USER="syncthing" -SYNCTHING="/usr/bin/syncthing" -CONFDIR="/var/lib/syncthing/config" -LOGFILE="/var/log/syncthing/syncthing.log" -LOGFLAGS="11" -SYNCTHING_ARGS="-no-browser" - -case "$1" in - stop) - if /usr/bin/pgrep -f /usr/bin/syncthing >/dev/null; then - echo "Stop Syncthing..." - killall syncthing 2>/dev/null - else - echo "Syncthing is not running..." - exit 1 - fi - ;; - start) - echo "Start Syncthing..." - su - $SYNCTHING_USER -c "$SYNCTHING -home=$CONFDIR -logfile=$LOGFILE -logflags=$LOGFLAGS $SYNCTHING_ARGS" 1>/dev/null 2>&1 & - ;; - restart) - $0 stop - sleep 1 - $0 start - ;; - *) - echo "usage: $0 { start | stop | restart }" >&2 - exit 1 - ;; -esac -- cgit v1.2.3