Scripted Tautulli Installation

Scripted Tautulli Installation 1.1

Joined
Jan 4, 2014
Messages
1,644

NasKar

Guru
Joined
Jan 8, 2016
Messages
739
Basil I have a script that is similar but the pkgs are slightly different. Tautulli works fine. Any thoughts on the advantage of your pkgs? "nano","bash","python","py37-setuptools","py37-sqlite3","py37-openssl","py37-pycryptodomex","security/ca_root_nss","git-lite"

This is my list.
echo '{"pkgs":["nano","python","py37-sqlite3","py37-openssl","ca_root_nss","git"]}' > /tmp/pkg.json
 
Joined
Jan 4, 2014
Messages
1,644
Joined
Jan 4, 2014
Messages
1,644
This resource appears to survive a jail upgrade from FreeBSD 11.3 to 12.2.
 
Joined
Jan 4, 2014
Messages
1,644
Basil Hendroff updated Scripted Tautulli Installation with a new update entry:

Python 3.8 required

Python 3.8 is the minimum version required to run the latest version of Tautulli.

If you've used an earlier version of the script and wish to upgrade the Tautulli jail, execute the following commands from within the jail and then restart the jail.

Code:
pkg remove python37 py37-setuptools py37-sqlite3 py37-openssl py37-pycryptodomex
pkg install python py38-setuptools py38-sqlite3 py38-openssl py38-pycryptodomex

Read the rest of this update entry...
 
Joined
Jan 4, 2014
Messages
1,644
If you've ever wondered what Tautulli flags are available, wonder no more.

Code:
root@tautulli:~ # python /usr/local/share/Tautulli/Tautulli.py --help
usage: Tautulli.py [-h] [-v] [-q] [-d] [-p PORT] [--dev] [--datadir DATADIR]
                   [--config CONFIG] [--nolaunch] [--pidfile PIDFILE]
                   [--nofork]

A Python based monitoring and tracking tool for Plex Media Server.

optional arguments:
  -h, --help            show this help message and exit
  -v, --verbose         Increase console logging verbosity
  -q, --quiet           Turn off console logging
  -d, --daemon          Run as a daemon
  -p PORT, --port PORT  Force Tautulli to run on a specified port
  --dev                 Start Tautulli in the development environment
  --datadir DATADIR     Specify a directory where to store your data files
  --config CONFIG       Specify a config file to use
  --nolaunch            Prevent browser from launching on startup
  --pidfile PIDFILE     Create a pid file (only relevant when running as a
                        daemon)
  --nofork              Start Tautulli as a service, do not fork when
                        restarting
 
Top