-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Overwrite server.conf settings only for provided env vars #76
Overwrite server.conf settings only for provided env vars #76
Conversation
dacb220
to
0ea2555
Compare
Currently on every start the whole server.conf file gets replaced which causes any changed settings during runtime to get lost
This is the only setting that can not be changed via the UI
#!/bin/bash | ||
|
||
# exit early in case the file already exists | ||
if [ -f /home/suwayomi/.local/share/Tachidesk/server.conf ]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This means the file will not get updated even if you change env-vars, which feels sort of confusing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It will, this script just creates the config for the first time, its not used after that
0ea2555
to
e0c6e8b
Compare
I think it would still be useful to have a |
Currently on every start the whole server.conf file gets replaced which causes any changed settings during runtime to get lost
closes #63