From 669a371c0d74e93a0b37177722f13e4f99efc8a8 Mon Sep 17 00:00:00 2001 From: Liam Date: Mon, 15 Jan 2024 23:09:08 +0000 Subject: [PATCH] cleanup --- README.md | 3 ++- src/command/impl/addCommand.py | 4 +--- src/command/impl/removeCommand.py | 4 +--- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index bdd3866..5aafdba 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,8 @@ This is a helper container for traefik. It can add, remove and update services. ## NOTICE -PLEASE PLEASE PLEASE MAKE SURE YOU HAVE A BACKUP OF YOUR CONFIG FILE BEFORE USING THIS CONTAINER. I AM NOT RESPONSIBLE FOR ANY DATA LOSS. +PLEASE PLEASE PLEASE MAKE SURE YOU HAVE A BACKUP OF YOUR CONFIG FILE BEFORE USING THIS CONTAINER. I AM NOT RESPONSIBLE FOR ANY DATA LOSS.
+This helper also assumes that you have SSL certificates setup for your services. ## Usage diff --git a/src/command/impl/addCommand.py b/src/command/impl/addCommand.py index 7da8662..2d8dc3e 100644 --- a/src/command/impl/addCommand.py +++ b/src/command/impl/addCommand.py @@ -26,6 +26,4 @@ class AddCommand(Command): traefikConfig.save() - restartTraefik() - - print("Done!") \ No newline at end of file + restartTraefik() \ No newline at end of file diff --git a/src/command/impl/removeCommand.py b/src/command/impl/removeCommand.py index 38638d4..6f9c135 100644 --- a/src/command/impl/removeCommand.py +++ b/src/command/impl/removeCommand.py @@ -24,6 +24,4 @@ class RemoveCommand(Command): traefikConfig.save() - restartTraefik() - - print(f"Removed \"{name}\"") \ No newline at end of file + restartTraefik() \ No newline at end of file