-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
40 lines (38 loc) · 1.28 KB
/
config.py
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
32
33
34
35
36
37
38
39
40
# This file contains configuration parameters for the script
def files_content(current_day_name, current_day_name_US):
return {
f"Tasks_{current_day_name}.txt": [
"--- Turnover of the prev. shift ---\n",
"\n",
"--- Tasks for today ---\n",
"\n",
"--- Turnover for today ---\n",
f"Turnover {current_day_name_US}\n",
"\n"
],
f"Backups_{current_day_name}.txt": [
f"Backups Failures for the day: \n",
"\n",
],
f"ISP_1_Maintenances_{current_day_name}": [
"--- In Progress Maintenance ---\n",
"\n",
"--- Upcoming Maintenance ---\n"
],
f"ISP_2_Maintenances_{current_day_name}": [
"--- In Progress Maintenance ---\n",
"\n",
"--- Upcoming Maintenance ---\n"
],
f"ISP_1_Repair_Active_{current_day_name}": [
"\n"
],
f"ISP_2_Repair_Active_{current_day_name}": [
"\n"
],
}
os_path = {
"windows": "\\",
"linux": "/",
"darwin": "/"
}