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