aboutsummaryrefslogtreecommitdiffstats
path: root/moon_manager/moon_manager/manager_setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'moon_manager/moon_manager/manager_setup.py')
-rw-r--r--moon_manager/moon_manager/manager_setup.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/moon_manager/moon_manager/manager_setup.py b/moon_manager/moon_manager/manager_setup.py
new file mode 100644
index 00000000..b3e5a1eb
--- /dev/null
+++ b/moon_manager/moon_manager/manager_setup.py
@@ -0,0 +1,31 @@
+# Software Name: MOON
+
+# Version: 5.4
+
+# SPDX-FileCopyrightText: Copyright (c) 2018-2020 Orange and its contributors
+# SPDX-License-Identifier: Apache-2.0
+
+# This software is distributed under the 'Apache License 2.0',
+# the text of which is available at 'http://www.apache.org/licenses/LICENSE-2.0.txt'
+# or see the "LICENSE" file for more details.
+
+"""
+This file is used only once to install the manager
+"""
+
+import os
+import shutil
+import sys
+
+
+def setup():
+ """Setup the manager
+
+ :return: nothing
+ """
+ if os.name == "posix":
+ if not os.path.exists(os.path.join("/etc", "moon")):
+ print("Installing configuration file in /etc")
+ shutil.copytree(os.path.abspath(sys.argv[0]+"/../../moon"), os.path.join("/etc/moon"))
+ else:
+ print('The directory "/etc/moon/" already exists.', file=sys.stderr)