|
@@ -36,6 +36,7 @@ import atexit
|
|
import copy
|
|
import copy
|
|
import fcntl
|
|
import fcntl
|
|
import json
|
|
import json
|
|
|
|
+import time
|
|
import os
|
|
import os
|
|
import re
|
|
import re
|
|
import shutil
|
|
import shutil
|
|
@@ -377,7 +378,7 @@ class Yedit(object): # pragma: no cover
|
|
raise YeditException('Please specify a filename.')
|
|
raise YeditException('Please specify a filename.')
|
|
|
|
|
|
if self.backup and self.file_exists():
|
|
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 to set format attributes if supported
|
|
try:
|
|
try:
|
|
@@ -1524,7 +1525,6 @@ class CAServerCert(OpenShiftCLI):
|
|
# Added this here as a safegaurd for stomping on the
|
|
# Added this here as a safegaurd for stomping on the
|
|
# cert and key files if they exist
|
|
# cert and key files if they exist
|
|
if self.config.config_options['backup']['value']:
|
|
if self.config.config_options['backup']['value']:
|
|
- import time
|
|
|
|
ext = time.strftime("%Y-%m-%d@%H:%M:%S", time.localtime(time.time()))
|
|
ext = time.strftime("%Y-%m-%d@%H:%M:%S", time.localtime(time.time()))
|
|
date_str = "%s_" + "%s" % ext
|
|
date_str = "%s_" + "%s" % ext
|
|
|
|
|