diff options
author | Mark Felder <feld@FreeBSD.org> | 2018-03-17 15:11:32 +0000 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2018-03-17 15:11:32 +0000 |
commit | 2738bc525e40e66cb8a94f2c4f3a9d5ff629fa59 (patch) | |
tree | b92631dd196e593c87cdcf8aaf4c76536598be61 /multimedia/tautulli/files/patch-Tautulli.py | |
parent | Fix order of variables (diff) |
multimedia/plexpy: Move to new project name, Tautulli
Due to Copyright infringement, the upstream project was renamed.
The software has also been updated from version 1.x to 2.x. Notable
changes and improvements:
- Automated pkg-plist
- No hardcoded user in the package. You can now more easily run the
software as another user
- Files have been moved to WWWDIR instead of PREFIX/plexpy
- Software no longer needs write access to the web root: all data is now
in /var/db/tautulli (backups, cache, logs, database)
Upgrade instructions:
- Install Tautulli
- Create /var/db/tautulli, owned by the user you will run the daemon as
(default: nobody)
- Copy your config.ini and plexpy.db to /var/db/tautulli
- Enable the service and start the software
Tautulli should automatically find your database file, rename it to
tautulli.db, and perform the required updates.
Reported by: many
Notes
Notes:
svn path=/head/; revision=464823
Diffstat (limited to 'multimedia/tautulli/files/patch-Tautulli.py')
-rw-r--r-- | multimedia/tautulli/files/patch-Tautulli.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/multimedia/tautulli/files/patch-Tautulli.py b/multimedia/tautulli/files/patch-Tautulli.py new file mode 100644 index 000000000000..dc5bf2bb737c --- /dev/null +++ b/multimedia/tautulli/files/patch-Tautulli.py @@ -0,0 +1,11 @@ +--- Tautulli.py.orig 2018-03-17 14:15:36 UTC ++++ Tautulli.py +@@ -1,8 +1,4 @@ + #!/usr/local/bin/python2.7 +-''''which python >/dev/null 2>&1 && exec python "$0" "$@" # ''' +-''''which python2 >/dev/null 2>&1 && exec python2 "$0" "$@" # ''' +-''''which python2.7 >/dev/null 2>&1 && exec python2.7 "$0" "$@" # ''' +-''''exec echo "Error: Python not found!" # ''' + + # -*- coding: utf-8 -*- + |