aboutsummaryrefslogtreecommitdiffstats
path: root/moon_manager/moon_manager/manager_setup.py
blob: b3e5a1eba6f774f4e6c9ee07eef50f6a4a695989 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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)