I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 47699459 authored by hypercubus's avatar hypercubus Committed by zzz
Browse files

adding the service wrapper install and uninstall scripts for *nix

parent 287969f1
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
# I2P Installer - Installs and pre-configures I2P.
#
# install_i2p_service_unix
# 2004 The I2P Project
# This code is public domain.
#
# author: hypercubus
#
# Installs I2P as a service on various *nix systems using Wrapper. This script
# must be run as root.
#
# Wrapper can be found at:
# http://wrapper.tanukisoftware.org/doc/english/introduction.html
if [ $UID -ne 0 ]; then
echo 'Sorry, you need root privileges to install services.'
exit 1
fi
HOST_OS=`uname -a`
if [ ! '$HOST_OS' ]; then
echo 'Cannot determine operating system type. Aborting service installation.'
exit 1
fi
# The following are several different service installation methods covering some
# of the major *nix operating systems. Most *nix OSes should be able to use one
# of these styles. TODO: AIX, HP-UX, HP-UX/64, IRIX, OSF/1.
install_bsd()
{
ln -sf `pwd`/i2psvc /usr/local/etc/rc.d/i2psvc.sh
}
install_debian()
{
ln -sf `pwd`/i2psvc /etc/init.d/i2psvc
update-rc.d i2psvc start 20 2 3 4 5 . stop 20 0 1 6 .
}
install_gentoo()
{
ln -sf `pwd`/i2psvc /etc/init.d/i2psvc
rc-update add i2psvc default
}
install_redhat()
{
ln -sf `pwd`/i2psvc /etc/rc.d/init.d/i2psvc
chkconfig --level 345 i2psvc on
}
install_sysv()
{
ln -sf `pwd`/i2psvc /etc/init.d/i2psvc
ln -sf /etc/init.d/i2psvc /etc/rc0.d/K20i2psvc
ln -sf /etc/init.d/i2psvc /etc/rc1.d/K20i2psvc
ln -sf /etc/init.d/i2psvc /etc/rc2.d/S20i2psvc
ln -sf /etc/init.d/i2psvc /etc/rc3.d/S20i2psvc
}
if [[ `echo "$HOST_OS" | grep Darwin` || `echo "$HOST_OS" | grep Macintosh` ]]; then
install_bsd
exit 0
fi
if [[ `echo "$HOST_OS" | grep FreeBSD` ]]; then
install_bsd
exit 0
fi
if [[ `echo "$HOST_OS" | grep Linux` ]]; then
LINUX_DISTRO=`cat /proc/version`
if [[ `echo "$LINUX_DISTRO" | grep Debian` ]]; then
install_debian
exit 0
fi
if [[ `echo "$LINUX_DISTRO" | grep Fedora` ]]; then
install_redhat
exit 0
fi
if [[ `echo "$LINUX_DISTRO" | grep Gentoo` ]]; then
install_gentoo
exit 0
fi
if [[ `echo "$LINUX_DISTRO" | grep Mandrake` ]]; then
install_redhat
exit 0
fi
if [[ `echo "$LINUX_DISTRO" | grep "Red Hat"` ]]; then
install_redhat
exit 0
fi
if [[ `echo "$LINUX_DISTRO" | grep Suse` ]]; then
install_redhat
exit 0
fi
fi
if [[ `echo "$HOST_OS" | grep Solaris` ]]; then
install_sysv()
exit 0
fi
echo 'Cannot determine operating system type. Aborting service installation.'
exit 1
#!/bin/sh
# I2P Installer - Installs and pre-configures I2P.
#
# uninstall_i2p_service_unix
# 2004 The I2P Project
# This code is public domain.
#
# author: hypercubus
#
# Uninstalls the Wrapper-based I2P service on various *nix systems. This script
# must be run as root.
#
# Wrapper can be found at:
# http://wrapper.tanukisoftware.org/doc/english/introduction.html
if [ $UID -ne 0 ]; then
echo 'Sorry, you need root privileges to uninstall services.'
exit 1
fi
HOST_OS=`uname -a`
if [ ! '$HOST_OS' ]; then
echo 'Cannot determine operating system type. Please uninstall the service manually.'
exit 1
fi
# The following are several different service installation methods covering some
# of the major *nix operating systems. Most *nix OSes should be able to use one
# of these styles. TODO: AIX, HP-UX, HP-UX/64, IRIX, OSF/1.
uninstall_bsd()
{
rm /usr/local/etc/rc.d/i2psvc.sh
}
uninstall_debian()
{
rm /etc/init.d/i2psvc
update-rc.d -f i2psvc remove
}
uninstall_gentoo()
{
rm /etc/init.d/i2psvc
rc-update del i2psvc default
}
uninstall_redhat()
{
rm /etc/rc.d/init.d/i2psvc
chkconfig --level 345 i2psvc off
}
uninstall_sysv()
{
rm /etc/init.d/i2psvc
rm /etc/rc0.d/K20i2psvc
rm /etc/rc1.d/K20i2psvc
rm /etc/rc2.d/S20i2psvc
rm /etc/rc3.d/S20i2psvc
}
if [[ `echo "$HOST_OS" | grep Darwin` || `echo "$HOST_OS" | grep Macintosh` ]]; then
uninstall_bsd
exit 0
fi
if [[ `echo "$HOST_OS" | grep FreeBSD` ]]; then
uninstall_bsd
exit 0
fi
if [[ `echo "$HOST_OS" | grep Linux` ]]; then
LINUX_DISTRO=`cat /proc/version`
if [[ `echo "$LINUX_DISTRO" | grep Debian` ]]; then
uninstall_debian
exit 0
fi
if [[ `echo "$LINUX_DISTRO" | grep Fedora` ]]; then
uninstall_redhat
exit 0
fi
if [[ `echo "$LINUX_DISTRO" | grep Gentoo` ]]; then
uninstall_gentoo
exit 0
fi
if [[ `echo "$LINUX_DISTRO" | grep Mandrake` ]]; then
uninstall_redhat
exit 0
fi
if [[ `echo "$LINUX_DISTRO" | grep "Red Hat"` ]]; then
uninstall_redhat
exit 0
fi
if [[ `echo "$LINUX_DISTRO" | grep Suse` ]]; then
uninstall_redhat
exit 0
fi
fi
if [[ `echo "$HOST_OS" | grep Solaris` ]]; then
uninstall_sysv()
exit 0
fi
echo 'Cannot determine operating system type. Please uninstall the service manually.'
exit 1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment