mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-02 16:43:32 +01:00
Remove obsolete OpenSUSE initscript
This commit is contained in:
parent
efeb101b96
commit
6d347fe329
2
changes/ticket30076
Normal file
2
changes/ticket30076
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
o Removed features:
|
||||||
|
- Remove obsolete OpenSUSE initscript. Resolves issue 30076.
|
@ -2457,7 +2457,6 @@ AC_CONFIG_FILES([
|
|||||||
Doxyfile
|
Doxyfile
|
||||||
Makefile
|
Makefile
|
||||||
config.rust
|
config.rust
|
||||||
contrib/dist/suse/tor.sh
|
|
||||||
contrib/operator-tools/tor.logrotate
|
contrib/operator-tools/tor.logrotate
|
||||||
contrib/dist/torctl
|
contrib/dist/torctl
|
||||||
contrib/dist/tor.service
|
contrib/dist/tor.service
|
||||||
|
@ -34,8 +34,6 @@ tools. Everybody likes to write init scripts differently, it seems.
|
|||||||
|
|
||||||
tor.service is a sample service file for use with systemd.
|
tor.service is a sample service file for use with systemd.
|
||||||
|
|
||||||
The suse/ subdirectory contains files used by the suse distribution.
|
|
||||||
|
|
||||||
operator-tools/ -- Tools for Tor relay operators
|
operator-tools/ -- Tools for Tor relay operators
|
||||||
------------------------------------------------
|
------------------------------------------------
|
||||||
|
|
||||||
|
118
contrib/dist/suse/tor.sh.in
vendored
118
contrib/dist/suse/tor.sh.in
vendored
@ -1,118 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
#
|
|
||||||
# Copyright (c) 2006-2007 Andrew Lewman
|
|
||||||
#
|
|
||||||
# tor The Onion Router
|
|
||||||
#
|
|
||||||
# Startup/shutdown script for tor. This is a wrapper around torctl;
|
|
||||||
# torctl does the actual work in a relatively system-independent, or at least
|
|
||||||
# distribution-independent, way, and this script deals with fitting the
|
|
||||||
# whole thing into the conventions of the particular system at hand.
|
|
||||||
#
|
|
||||||
# These next couple of lines "declare" tor for the "chkconfig" program,
|
|
||||||
# originally from SGI, used on Red Hat/Fedora and probably elsewhere.
|
|
||||||
#
|
|
||||||
# chkconfig: 2345 90 10
|
|
||||||
# description: Onion Router - A low-latency anonymous proxy
|
|
||||||
#
|
|
||||||
|
|
||||||
### BEGIN INIT INFO
|
|
||||||
# Provides: tor
|
|
||||||
# Required-Start: $remote_fs $network
|
|
||||||
# Required-Stop: $remote_fs $network
|
|
||||||
# Default-Start: 3 5
|
|
||||||
# Default-Stop: 0 1 2 6
|
|
||||||
# Short-Description: Start the tor daemon
|
|
||||||
# Description: Start the tor daemon: the anon-proxy server
|
|
||||||
### END INIT INFO
|
|
||||||
|
|
||||||
. /etc/rc.status
|
|
||||||
|
|
||||||
# Shell functions sourced from /etc/rc.status:
|
|
||||||
# rc_check check and set local and overall rc status
|
|
||||||
# rc_status check and set local and overall rc status
|
|
||||||
# rc_status -v ditto but be verbose in local rc status
|
|
||||||
# rc_status -v -r ditto and clear the local rc status
|
|
||||||
# rc_failed set local and overall rc status to failed
|
|
||||||
# rc_reset clear local rc status (overall remains)
|
|
||||||
# rc_exit exit appropriate to overall rc status
|
|
||||||
|
|
||||||
# First reset status of this service
|
|
||||||
rc_reset
|
|
||||||
|
|
||||||
# Increase open file descriptors a reasonable amount
|
|
||||||
ulimit -n 8192
|
|
||||||
|
|
||||||
TORCTL=@BINDIR@/torctl
|
|
||||||
|
|
||||||
# torctl will use these environment variables
|
|
||||||
TORUSER=@TORUSER@
|
|
||||||
export TORUSER
|
|
||||||
TORGROUP=@TORGROUP@
|
|
||||||
export TORGROUP
|
|
||||||
|
|
||||||
TOR_DAEMON_PID_DIR="@LOCALSTATEDIR@/run/tor"
|
|
||||||
|
|
||||||
if [ -x /bin/su ] ; then
|
|
||||||
SUPROG=/bin/su
|
|
||||||
elif [ -x /sbin/su ] ; then
|
|
||||||
SUPROG=/sbin/su
|
|
||||||
elif [ -x /usr/bin/su ] ; then
|
|
||||||
SUPROG=/usr/bin/su
|
|
||||||
elif [ -x /usr/sbin/su ] ; then
|
|
||||||
SUPROG=/usr/sbin/su
|
|
||||||
else
|
|
||||||
SUPROG=/bin/su
|
|
||||||
fi
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
|
|
||||||
start)
|
|
||||||
echo "Starting tor daemon"
|
|
||||||
|
|
||||||
if [ ! -d $TOR_DAEMON_PID_DIR ] ; then
|
|
||||||
mkdir -p $TOR_DAEMON_PID_DIR
|
|
||||||
chown $TORUSER:$TORGROUP $TOR_DAEMON_PID_DIR
|
|
||||||
fi
|
|
||||||
|
|
||||||
## Start daemon with startproc(8). If this fails
|
|
||||||
## the echo return value is set appropriate.
|
|
||||||
|
|
||||||
startproc -f $TORCTL start
|
|
||||||
# Remember status and be verbose
|
|
||||||
rc_status -v
|
|
||||||
;;
|
|
||||||
|
|
||||||
stop)
|
|
||||||
echo "Stopping tor daemon"
|
|
||||||
startproc -f $TORCTL stop
|
|
||||||
# Remember status and be verbose
|
|
||||||
rc_status -v
|
|
||||||
;;
|
|
||||||
|
|
||||||
restart)
|
|
||||||
echo "Restarting tor daemon"
|
|
||||||
startproc -f $TORCTL restart
|
|
||||||
# Remember status and be verbose
|
|
||||||
rc_status -v
|
|
||||||
;;
|
|
||||||
|
|
||||||
reload)
|
|
||||||
echo "Reloading tor daemon"
|
|
||||||
startproc -f $TORCTL reload
|
|
||||||
# Remember status and be verbose
|
|
||||||
rc_status -v
|
|
||||||
;;
|
|
||||||
|
|
||||||
status)
|
|
||||||
startproc -f $TORCTL status
|
|
||||||
# Remember status and be verbose
|
|
||||||
rc_status -v
|
|
||||||
;;
|
|
||||||
|
|
||||||
*)
|
|
||||||
echo "Usage: $0 (start|stop|restart|reload|status)"
|
|
||||||
RETVAL=1
|
|
||||||
esac
|
|
||||||
|
|
||||||
rc_exit
|
|
@ -3,7 +3,6 @@ EXTRA_DIST+= \
|
|||||||
contrib/README \
|
contrib/README \
|
||||||
contrib/client-tools/torify \
|
contrib/client-tools/torify \
|
||||||
contrib/dist/rc.subr \
|
contrib/dist/rc.subr \
|
||||||
contrib/dist/suse/tor.sh.in \
|
|
||||||
contrib/dist/torctl \
|
contrib/dist/torctl \
|
||||||
contrib/dist/tor.service.in \
|
contrib/dist/tor.service.in \
|
||||||
contrib/operator-tools/tor-exit-notice.html \
|
contrib/operator-tools/tor-exit-notice.html \
|
||||||
|
Loading…
Reference in New Issue
Block a user