Release
This commit is contained in:
134
scripts/install
Executable file
134
scripts/install
Executable file
@@ -0,0 +1,134 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Retrieve arguments
|
||||
domain=$1
|
||||
path=$2
|
||||
data_dir=$3
|
||||
current_dir=${PWD}
|
||||
debian_version=$(lsb_release -c -s)
|
||||
|
||||
# Check domain/path availability
|
||||
sudo yunohost app checkurl $domain$path -a rutorrent
|
||||
if [[ ! $? -eq 0 ]]; then
|
||||
echo "Error: domain/path not available"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Install sources
|
||||
if [ "$debian_version" = "jessie" ]; then
|
||||
sudo apt-get install -y deb-multimedia-keyring
|
||||
echo 'deb http://ftp2.fr.debian.org/debian/ jessie main non-free' | sudo tee -a /etc/apt/sources.list.d/rutorrent.list
|
||||
echo 'deb-src http://ftp2.fr.debian.org/debian/ jessie main non-free' | sudo tee -a /etc/apt/sources.list.d/rutorrent.list
|
||||
echo 'deb ftp://ftp.deb-multimedia.org jessie main non-free' | sudo tee -a /etc/apt/sources.list.d/rutorrent.list
|
||||
else
|
||||
echo 'deb http://ftp2.fr.debian.org/debian/ wheezy main non-free' | sudo tee -a /etc/apt/sources.list.d/rutorrent.list
|
||||
echo 'deb-src http://ftp2.fr.debian.org/debian/ wheezy main non-free' | sudo tee -a /etc/apt/sources.list.d/rutorrent.list
|
||||
fi
|
||||
|
||||
# Install de dependencies
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y htop automake libcppunit-dev libtool build-essential pkg-config libssl-dev libcurl4-openssl-dev libsigc++-2.0-dev libncurses5-dev screen subversion apache2-utils php5-cli php5-geoip unzip unrar rar zip ffmpeg buildtorrent mediainfo
|
||||
|
||||
# Build xmlrpc
|
||||
cd /tmp
|
||||
sudo svn checkout http://svn.code.sf.net/p/xmlrpc-c/code/stable xmlrpc-c
|
||||
cd xmlrpc-c/
|
||||
sudo ./configure
|
||||
sudo make
|
||||
sudo make install
|
||||
|
||||
# Build libtorrent
|
||||
cd /tmp
|
||||
sudo git clone https://github.com/rakshasa/libtorrent.git
|
||||
cd libtorrent
|
||||
sudo git checkout 0.13.4
|
||||
sudo ./autogen.sh
|
||||
sudo ./configure
|
||||
sudo make
|
||||
sudo make install
|
||||
|
||||
# Build rtorrent
|
||||
cd /tmp
|
||||
sudo git clone https://github.com/rakshasa/rtorrent.git
|
||||
cd rtorrent
|
||||
sudo git checkout 0.9.4
|
||||
sudo ./autogen.sh
|
||||
sudo ./configure --with-xmlrpc-c
|
||||
sudo make
|
||||
sudo make install
|
||||
|
||||
sudo ldconfig
|
||||
|
||||
# Install rutorrent
|
||||
sudo git clone https://github.com/Novik/ruTorrent.git /var/www/rutorrent
|
||||
|
||||
# Install rutorrent plugins
|
||||
cd /var/www/rutorrent/plugins/
|
||||
|
||||
sudo git clone https://github.com/xombiemp/rutorrentMobile.git mobile
|
||||
|
||||
sudo svn checkout http://svn.rutorrent.org/svn/filemanager/trunk/filemanager
|
||||
|
||||
# Configure plugins
|
||||
cd $current_dir
|
||||
|
||||
sudo rm /var/www/rutorrent/plugins/create/conf.php
|
||||
sudo cp ../sources/plugins/create/conf.php /var/www/rutorrent/plugins/create/conf.php
|
||||
|
||||
sudo rm /var/www/rutorrent/plugins/filemanager/conf.php
|
||||
sudo cp ../sources/plugins/filemanager/conf.php /var/www/rutorrent/plugins/filemanager/conf.php
|
||||
|
||||
sudo rm /var/www/rutorrent/plugins/mobile/init.js
|
||||
sudo cp ../sources/plugins/mobile/init.js /var/www/rutorrent/plugins/mobile/init.js
|
||||
|
||||
# Configure nginx
|
||||
sudo sed -i "s@PATHTOCHANGE@$path@g" ../sources/nginx/rutorrent.conf
|
||||
sudo cp ../sources/nginx/rutorrent.conf /etc/nginx/conf.d/$domain.d/rutorrent.conf
|
||||
|
||||
# Create data dir
|
||||
sudo mkdir $data_dir
|
||||
sudo mkdir $data_dir/watch
|
||||
sudo mkdir $data_dir/downloads
|
||||
sudo mkdir $data_dir/.session
|
||||
|
||||
# Create rtorrent user
|
||||
sudo useradd -p $(openssl passwd -1 rtorrent) -m rtorrent
|
||||
|
||||
# Add rtorrent config
|
||||
sudo sed -i "s@DATA_DIR@$data_dir@g" ../sources/rtorrent/rtorrent.rc
|
||||
sudo cp ../sources/rtorrent/rtorrent.rc /home/rtorrent/.rtorrent.rc
|
||||
sudo chown -R rtorrent:www-data /home/rtorrent/.rtorrent.rc
|
||||
|
||||
sudo chown -R rtorrent:www-data $data_dir
|
||||
sudo chmod 755 $data_dir
|
||||
|
||||
# Configure rutorrent
|
||||
sudo sed -i "s@DATA_DIR@$data_dir@g" ../sources/rutorrent/config.php
|
||||
sudo cp ../sources/rutorrent/config.php /var/www/rutorrent/conf/config.php
|
||||
sudo chown -R www-data:www-data /var/www/rutorrent
|
||||
|
||||
# Check port availability
|
||||
sudo yunohost app checkport 45069
|
||||
if [[ ! $? -eq 0 ]]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Open port in firewall
|
||||
sudo yunohost firewall allow TCP 45069 > /dev/null 2>&1
|
||||
|
||||
# Launch rtorrent on boot
|
||||
sudo cp ../sources/init/rtorrent /etc/init.d/rtorrent
|
||||
sudo chmod +x /etc/init.d/rtorrent
|
||||
sudo update-rc.d rtorrent defaults
|
||||
|
||||
# Start rtorrent
|
||||
sudo service rtorrent start
|
||||
sudo yunohost app ssowatconf
|
||||
sudo service nginx reload
|
||||
|
||||
# Save config
|
||||
sudo yunohost app setting rutorrent data_dir -v $data_dir
|
||||
sudo yunohost app setting rutorrent path -v $path
|
||||
|
||||
# Register the service on yunohost
|
||||
sudo yunohost service add rtorrent
|
||||
26
scripts/remove
Executable file
26
scripts/remove
Executable file
@@ -0,0 +1,26 @@
|
||||
#!/bin/bash
|
||||
domain=$(sudo yunohost app setting rutorrent domain)
|
||||
data_dir=$(sudo yunohost app setting rutorrent data_dir)
|
||||
|
||||
sudo service rtorrent stop
|
||||
|
||||
sudo rm -rf /var/www/rutorrent
|
||||
sudo rm -rf $data_dir
|
||||
sudo rm -f /etc/nginx/conf.d/$domain.d/rutorrent.conf
|
||||
sudo rm -f /etc/init.d/rtorrent
|
||||
|
||||
# Remove the user
|
||||
sudo userdel -f rtorrent
|
||||
sudo rm -rf /home/rtorrent
|
||||
|
||||
# Remove the service
|
||||
sudo yunohost service remove rtorrent
|
||||
|
||||
# Remove the sources
|
||||
sudo rm -f /etc/apt/sources.list.d/rutorrent.list
|
||||
|
||||
# Remove rtorrent
|
||||
sudo rm -f /usr/local/bin/rtorrent
|
||||
|
||||
sudo yunohost app ssowatconf
|
||||
sudo service nginx reload
|
||||
0
scripts/upgrade
Normal file
0
scripts/upgrade
Normal file
Reference in New Issue
Block a user