forked from Kareadita/Kavita
-
Notifications
You must be signed in to change notification settings - Fork 0
/
entrypoint.sh
57 lines (51 loc) · 1.81 KB
/
entrypoint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#! /bin/bash
# Removed - This is causing issues for Synology users
## Set default UID and GID for Kavita but allow overrides
#PUID=${PUID:-0}
#PGID=${PGID:-0}
#
## Add Kavita group if it doesn't already exist
#if [[ -z "$(getent group "$PGID" | cut -d':' -f1)" ]]; then
# groupadd -o -g "$PGID" kavita
#fi
#
## Add Kavita user if it doesn't already exist
#if [[ -z "$(getent passwd "$PUID" | cut -d':' -f1)" ]]; then
# useradd -o -u "$PUID" -g "$PGID" -d /kavita kavita
#fi
#Checks if the config file exists, and creates it if it does not
if [ ! -f "/kavita/config/appsettings.json" ]; then
echo "Kavita configuration file does not exist, copying from temp..."
cp /tmp/config/appsettings.json /kavita/config/appsettings.json
if [ -f "/kavita/config/appsettings.json" ]; then
echo "Copy completed successfully, starting app..."
else
echo "Copy failed, check folder permissions. Exiting..."
exit
fi
fi
echo "App setting permissions"
echo ls -l "/kavita/config/appsettings.json"
chmod +x Kavita
./Kavita
#if [[ "$PUID" -eq 0 ]]; then
# # Run as root
# ./Kavita
#else
# # Set ownership on config dir if running non-root and current ownership is different
# if [[ ! "$(stat -c %u /kavita/config)" = "$PUID" ]]; then
# echo "Specified PUID differs from Kavita config dir ownership, updating permissions now..."
# if [[ ! "$(stat -c %g /kavita/config)" = "$PGID" ]]; then
# chown -R "$PUID":"$PGID" /kavita/config
# else
# chown -R "$PUID" /kavita/config
# fi
#
# elif [[ ! "$(stat -c %g /kavita/config)" = "$PGID" ]]; then
# echo "Specified PGID differs from Kavita config dir ownership, updating permissions now..."
# chgrp -R "$PGID" /kavita/config
# fi
#
# # Run as non-root user
# su -l kavita -c ./Kavita
#fi