summaryrefslogtreecommitdiff
path: root/net-misc/dropbox/files
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/dropbox/files')
-rw-r--r--net-misc/dropbox/files/dropbox.conf14
-rw-r--r--net-misc/dropbox/files/dropbox.initd66
-rw-r--r--net-misc/dropbox/files/dropbox_at.service-r113
3 files changed, 0 insertions, 93 deletions
diff --git a/net-misc/dropbox/files/dropbox.conf b/net-misc/dropbox/files/dropbox.conf
deleted file mode 100644
index c20c3c46..00000000
--- a/net-misc/dropbox/files/dropbox.conf
+++ /dev/null
@@ -1,14 +0,0 @@
-# /etc/conf.d/dropbox.conf: config file for /etc/init.d/dropbox
-
-# Users to run dropbox
-DROPBOX_USERS=""
-
-# integer [-20 .. 19 ] default 0
-# change the priority of the server -20 (high) to 19 (low)
-# see nice(1) for description
-#NICE=0
-
-# See start-stop-daemon(8) for possible settings
-#IONICE=2
-
-PID_DIR=/var/run/dropbox
diff --git a/net-misc/dropbox/files/dropbox.initd b/net-misc/dropbox/files/dropbox.initd
deleted file mode 100644
index 95a230ee..00000000
--- a/net-misc/dropbox/files/dropbox.initd
+++ /dev/null
@@ -1,66 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License, v2 or later
-# $Id$
-
-depend() {
- need localmount net
- after bootmisc
-}
-
-start() {
- local tmpnice="${NICE:+"--nicelevel "}${NICE}"
- local tmpionice="${IONICE:+"--ionice "}${IONICE}"
- local started=""
-
- ebegin "Starting dropbox"
- for dbuser in ${DROPBOX_USERS}; do
- local homedir=$(eval echo ~${dbuser})
- if test -d "${homedir}" && \
- echo 0 > ${homedir}/.dropbox/dropbox.pid && \
- start-stop-daemon -S -b \
- ${tmpnice} ${tmpionice} \
- -u ${dbuser} -v \
- -p ${homedir}/.dropbox/dropbox.pid \
- -e HOME=${homedir} \
- -x /opt/bin/dropbox; then
- started="${started} ${dbuser}"
- else
- eend $?
- eerror "Failed to start dropbox for ${dbuser}"
- if [ -n "${started}" ]; then
- eerror "Stopping already started dropbox"
- DROPBOX_USERS=${started} stop
- fi
- return 1
- fi
- done
- if [ -z "${started}" ];then
- eerror "No dropbox started"
- eend 1
- else
- eend 0
- fi
-}
-
-stop() {
- local retval=0
- ebegin "Stopping dropbox"
- for dbuser in ${DROPBOX_USERS}; do
- local homedir=$(eval echo ~${dbuser})
- start-stop-daemon --stop \
- --pidfile ${homedir}/.dropbox/dropbox.pid || retval=$?
- done
- eend ${retval}
-}
-
-status() {
- for dbuser in ${DROPBOX_USERS}; do
- local homedir=$(eval echo ~${dbuser})
- if [ -e ${homedir}/.dropbox/dropbox.pid ] ; then
- echo "dropboxd for USER $dbuser: running."
- else
- echo "dropboxd for USER $dbuser: not running."
- fi
- done
-}
diff --git a/net-misc/dropbox/files/dropbox_at.service-r1 b/net-misc/dropbox/files/dropbox_at.service-r1
deleted file mode 100644
index b46a8509..00000000
--- a/net-misc/dropbox/files/dropbox_at.service-r1
+++ /dev/null
@@ -1,13 +0,0 @@
-[Unit]
-Description=Dropbox
-After=local-fs.target network.target
-
-[Service]
-ExecStart=/opt/dropbox/dropboxd
-ExecReload=/bin/kill -HUP $MAINPID
-KillMode=process
-Restart=always
-User=%i
-
-[Install]
-WantedBy=multi-user.target