Browse Source

Bug 1555426- yedit now appends an ISO8601 formatted datetime string to file backups

Fabian von Feilitzsch 7 years ago
parent
commit
bc2ad50e59
2 changed files with 2 additions and 2 deletions
  1. 1 1
      roles/lib_utils/library/yedit.py
  2. 1 1
      roles/lib_utils/src/class/yedit.py

+ 1 - 1
roles/lib_utils/library/yedit.py

@@ -425,7 +425,7 @@ class Yedit(object):
             raise YeditException('Please specify a filename.')
 
         if self.backup and self.file_exists():
-            shutil.copy(self.filename, self.filename + '.orig')
+            shutil.copy(self.filename, '{}.{}'.format(self.filename, time.strftime("%Y%m%dT%H%M%S")))
 
         # Try to set format attributes if supported
         try:

+ 1 - 1
roles/lib_utils/src/class/yedit.py

@@ -221,7 +221,7 @@ class Yedit(object):
             raise YeditException('Please specify a filename.')
 
         if self.backup and self.file_exists():
-            shutil.copy(self.filename, self.filename + '.orig')
+            shutil.copy(self.filename, '{}.{}'.format(self.filename, time.strftime("%Y%m%dT%H%M%S")))
 
         # Try to set format attributes if supported
         try: