1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-27 10:50:10 +03:00

Feature #3537: Add date & time to oned backup file

This commit is contained in:
Carlos Martín 2015-03-04 18:02:12 +01:00
parent fa21ed168e
commit 93d76e02ec

View File

@ -14,6 +14,7 @@
# limitations under the License. #
#--------------------------------------------------------------------------- #
require 'time'
require 'rubygems'
begin
@ -229,7 +230,9 @@ class BackEndMySQL < OneDBBacKEnd
end
def bck_file
"#{VAR_LOCATION}/mysql_#{@server}_#{@db_name}.sql"
t = Time.now
"#{VAR_LOCATION}/mysql_#{@server}_#{@db_name}.sql_"<<
"#{t.year}-#{t.month}-#{t.day}_#{t.hour}:#{t.min}:#{t.sec}.bck"
end
def backup(bck_file)
@ -299,7 +302,9 @@ class BackEndSQLite < OneDBBacKEnd
end
def bck_file
"#{VAR_LOCATION}/one.db.bck"
t = Time.now
"#{VAR_LOCATION}/one.db_"<<
"#{t.year}-#{t.month}-#{t.day}_#{t.hour}:#{t.min}:#{t.sec}.bck"
end
def backup(bck_file)