Only shut down automatically when automatic shutdown is enabled by settings
This commit is contained in:
parent
878d1ea330
commit
8d9d792568
5 changed files with 14 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
FROM git.zontreck.com/ariascreations/conanservermanager:latest
|
||||
FROM git.zontreck.com/ariascreations/conanservermanager:stable
|
||||
|
||||
RUN echo "Welcome to the Server Installer"
|
||||
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
cp /app/server /mnt/server/server
|
||||
pushd /mnt/server
|
||||
|
||||
./server
|
||||
/app/server
|
||||
|
||||
popd
|
||||
echo "Initial Install completed"
|
|
@ -7,4 +7,13 @@ FROM git.zontreck.com/ariascreations/conanservermanager:stable
|
|||
|
||||
COPY ./entrypoint.sh /entrypoint.sh
|
||||
|
||||
EXPOSE 25306/tcp
|
||||
EXPOSE 7777/tcp
|
||||
EXPOSE 7777/udp
|
||||
EXPOSE 7778/udp
|
||||
EXPOSE 7779/tcp
|
||||
EXPOSE 7779/udp
|
||||
EXPOSE 7780/tcp
|
||||
EXPOSE 7780/udp
|
||||
|
||||
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]
|
|
@ -1,7 +1,6 @@
|
|||
#!/bin/bash
|
||||
# Copied the entrypoint and slightly altered, from parkervcp's dart yolk.
|
||||
|
||||
|
||||
cd /home/container
|
||||
|
||||
# Print Dart version
|
||||
|
|
|
@ -220,7 +220,7 @@ class StateMachine {
|
|||
}
|
||||
}
|
||||
|
||||
if (send) {
|
||||
if (send && settings.inst!.timer.enabled) {
|
||||
// Send the alert message
|
||||
SessionData.CURRENT_INTERVAL = current;
|
||||
if (current.type == WarnType.Intrusive) {
|
||||
|
@ -236,7 +236,8 @@ class StateMachine {
|
|||
}
|
||||
|
||||
// Check Total Seconds
|
||||
if (SessionData.timer.getTotalSeconds() == 0) {
|
||||
if (SessionData.timer.getTotalSeconds() == 0 &&
|
||||
settings.inst!.timer.enabled) {
|
||||
SessionData.shutdownPending = true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue