aboutsummaryrefslogtreecommitdiff
path: root/debian/conf
diff options
context:
space:
mode:
authorErwin de Haan <EraYaN@users.noreply.github.com>2019-01-10 19:45:21 +0100
committerErwin de Haan <EraYaN@users.noreply.github.com>2019-01-10 19:45:30 +0100
commit399a079dd472a0ad424884eb48a0d9e471a95c70 (patch)
tree43bd338b79f1243dbe7f4f07ca63f1b5363724fb /debian/conf
parent3d867c2c46cec39b669bb8647efef677f32b8a8d (diff)
Build scripts and build system consolidation.
Squashed commit.
Diffstat (limited to 'debian/conf')
-rw-r--r--debian/conf/jellyfin34
-rw-r--r--debian/conf/jellyfin.service.conf7
-rw-r--r--debian/conf/logging.json29
3 files changed, 0 insertions, 70 deletions
diff --git a/debian/conf/jellyfin b/debian/conf/jellyfin
deleted file mode 100644
index 861865aae2..0000000000
--- a/debian/conf/jellyfin
+++ /dev/null
@@ -1,34 +0,0 @@
-# Jellyfin default configuration options
-
-# Use this file to override the default configurations; add additional
-# options with JELLYFIN_ADD_OPTS.
-
-# Under systemd, use
-# /etc/systemd/system/jellyfin.service.d/jellyfin.service.conf
-# to override the user or this config file's location.
-
-#
-# This is a POSIX shell fragment
-#
-
-#
-# General options
-#
-
-# Program directories
-JELLYFIN_DATA_DIRECTORY="/var/lib/jellyfin"
-JELLYFIN_CONFIG_DIRECTORY="/etc/jellyfin"
-JELLYFIN_LOG_DIRECTORY="/var/log/jellyfin"
-# Restart script for in-app server control
-JELLYFIN_RESTART_SCRIPT="/usr/lib/jellyfin/restart.sh"
-# Additional options for the binary
-JELLYFIN_ADD_OPTS=""
-
-#
-# SysV init/Upstart options
-#
-
-# Application username
-JELLYFIN_USER="jellyfin"
-# Full application command
-JELLYFIN_ARGS="-programdata $JELLYFIN_DATA_DIRECTORY -configdir $JELLYFIN_CONFIG_DIRECTORY -logdir $JELLYFIN_LOG_DIRECTORY -restartpath $JELLYFIN_RESTART_SCRIPT $JELLYFIN_ADD_OPTS"
diff --git a/debian/conf/jellyfin.service.conf b/debian/conf/jellyfin.service.conf
deleted file mode 100644
index 1b69dd74ef..0000000000
--- a/debian/conf/jellyfin.service.conf
+++ /dev/null
@@ -1,7 +0,0 @@
-# Jellyfin systemd configuration options
-
-# Use this file to override the user or environment file location.
-
-[Service]
-#User = jellyfin
-#EnvironmentFile = /etc/default/jellyfin
diff --git a/debian/conf/logging.json b/debian/conf/logging.json
deleted file mode 100644
index 5d98484cdf..0000000000
--- a/debian/conf/logging.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "Serilog": {
- "MinimumLevel": "Information",
- "WriteTo": [
- { "Name": "Console",
- "Args": {
- "outputTemplate": "[{Timestamp:HH:mm:ss}] [{Level:u3}] {Message:lj}{NewLine}{Exception}"
- }
- },
- {
- "Name": "Async",
- "Args": {
- "configure": [
- {
- "Name": "File",
- "Args": {
- "path": "%JELLYFIN_LOG_DIR%//jellyfin.log",
- "fileSizeLimitBytes": 10485700,
- "rollOnFileSizeLimit": true,
- "retainedFileCountLimit": 10,
- "outputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz}] [{Level:u3}] {Message}{NewLine}{Exception}"
- }
- }
- ]
- }
- }
- ]
- }
-}