Backup postewhite.conf instead of custom whitelist

Postwhite.conf contains a custom host list
This commit is contained in:
Spitap
2022-07-26 10:36:08 +02:00
parent 26204143af
commit 37bc21dfd3

View File

@@ -138,7 +138,7 @@ class Backup():
def backupCustomConfig(self): def backupCustomConfig(self):
"""Custom config : """Custom config :
- Amavis : /etc/amavis/conf.d/99-custom - Amavis : /etc/amavis/conf.d/99-custom
- Postscreen : /etc/postfix/custom_whitelist.cidr - Postwhite : /etc/postwhite.conf
Feel free to suggest to add others!""" Feel free to suggest to add others!"""
utils.printcolor("Backing up some custom configuration...", utils.MAGENTA) utils.printcolor("Backing up some custom configuration...", utils.MAGENTA)
@@ -150,11 +150,11 @@ class Backup():
utils.copy_file(amavis_custom, custom_path) utils.copy_file(amavis_custom, custom_path)
utils.printcolor("Amavis custom configuration saved!", utils.GREEN) utils.printcolor("Amavis custom configuration saved!", utils.GREEN)
"""POSTSCREEN""" """POSTWHITE"""
postscreen_custom = "/etc/postfix/custom_whitelist.cidr" postswhite_custom = "/etc/postwhite.conf"
if os.path.isfile(postscreen_custom): if os.path.isfile(postswhite_custom):
utils.copy_file(postscreen_custom, custom_path) utils.copy_file(postswhite_custom, custom_path)
utils.printcolor("Postscreen whitelist custom configuration saved!", utils.GREEN) utils.printcolor("Postwhite configuration saved!", utils.GREEN)
def backupDBs(self): def backupDBs(self):