summaryrefslogtreecommitdiff
path: root/app-admin/clsync/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-admin/clsync/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-admin/clsync/files')
-rw-r--r--app-admin/clsync/files/clsync.conf18
-rw-r--r--app-admin/clsync/files/clsync.confd20
-rw-r--r--app-admin/clsync/files/clsync.initd17
3 files changed, 0 insertions, 55 deletions
diff --git a/app-admin/clsync/files/clsync.conf b/app-admin/clsync/files/clsync.conf
deleted file mode 100644
index 91f38f17cd5c..000000000000
--- a/app-admin/clsync/files/clsync.conf
+++ /dev/null
@@ -1,18 +0,0 @@
-# clsync system configuration file
-#
-# General recommendations:
-# 1. Put --dir-lists on tmpfs.
-# 2. Use --uid and --gid to drop privileges whenever possible.
-# 3. Keeep your clsync rules and sync scripts in /etc/clsync/.
-
-[default]
-# Put your options here, see clsync man pages for a list of valid options.
-# Also check examples directory (/usr/share/doc/clsync-*/examples).
-#
-#watch-dir = /what/dir/to/sync
-#sync-handler = /etc/clsync/action.sh
-#rules-dir = /etc/clsync/rules
-#lists-dir = /tmp/clsync
-#threading = safe
-#delay-sync = 5
-#delay-collect = 5
diff --git a/app-admin/clsync/files/clsync.confd b/app-admin/clsync/files/clsync.confd
deleted file mode 100644
index 389f84e5d4b9..000000000000
--- a/app-admin/clsync/files/clsync.confd
+++ /dev/null
@@ -1,20 +0,0 @@
-# /etc/conf.d/clsync: config file for /etc/init.d/clsync
-
-# config file, default is /etc/clsync/clsync.conf.
-# to disable set to /dev/null
-#CLSYNC_CONF="/etc/clsync/clsync.conf"
-
-# clsync options, have precedence over config file,
-# see man clsync and $docdir/examples for details
-#CLSYNC_OPTS=""
-
-# Example of direct rsync usage:
-#CLSYNC_OPTS="--lists-dir /tmp/clsync --mode rsyncshell
-#--watch-dir /source/dir --sync-handler /usr/bin/rsync
-#--rules-file /etc/clsync/rules --distination-dir /destination/dir"
-
-# Change clsync nice level (default is unset)
-#CLSYNC_NICE="0"
-
-# Change clsync ionice level (default is unset)
-#CLSYNC_IONICE="2:7"
diff --git a/app-admin/clsync/files/clsync.initd b/app-admin/clsync/files/clsync.initd
deleted file mode 100644
index 28175a5fb696..000000000000
--- a/app-admin/clsync/files/clsync.initd
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-[ -n "${CLSYNC_CONF}" ] && conffile="--config-file ${CLSYNC_CONF}"
-[ -n "${CLSYNC_NICE}" ] && cmd_nice="--nice ${CLSYNC_NICE}"
-[ -n "${CLSYNC_IONICE}" ] && cmd_ionice="--ionice ${CLSYNC_IONICE}"
-
-command="/usr/bin/clsync"
-pidfile="/var/run/${SVCNAME}.pid"
-command_args="--background --output=syslog --pid-file=${pidfile} \
-${conffile} ${CLSYNC_OPTS}"
-start_stop_daemon_args="${cmd_nice} ${cmd_ionice}"
-
-depend() {
- use net
-}