Skip to content

Commit b7f4ddb

Browse files
Ilmar KermIlmar Kerm
Ilmar Kerm
authored and
Ilmar Kerm
committed
Netapp support bugfixes
1 parent 49b3d25 commit b7f4ddb

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

autorestore.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def runrestore(database):
148148
# UI
149149

150150
def loopdatabases():
151-
excludelist = ['generic','rman','zfssa','autorestore']
151+
excludelist = ['generic','rman','zfssa','autorestore','netapp']
152152
for configname in Configuration.sections():
153153
if configname not in excludelist:
154154
if Configuration.get('autorestoreenabled', configname) == '1':

exec_all.py

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ def printhelp():
2626
excludelist.append('rman')
2727
excludelist.append('zfssa')
2828
excludelist.append('autorestore')
29+
excludelist.append('netapp')
2930

3031
# Loop through all sections
3132
for dbname in Configuration.sections():

netapp.py

+3
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ def clone(self, snapid, clonename):
9595
output = self._srv.invoke("volume-clone-create", "parent-volume", self._volname, "parent-snapshot", snapid, "volume", clonename)
9696
self._check_netapp_error(output, "Creating clone failed")
9797
output = self._srv.invoke("volume-mount", "junction-path", "/%s" % clonename, "volume-name", clonename)
98+
self._check_netapp_error(output, "Mounting clone failed")
99+
output = self._srv.invoke("volume-set-option", "option-name", "nosnapdir", "option-value", "on", "volume", clonename)
100+
self._check_netapp_error(output, "Setting attribute on clone failed")
98101

99102
def dropclone(self, cloneid):
100103
info = self.filesystem_info(cloneid)

restorecommon.py

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ class RestoreDB(object):
1616
_dbparams = {}
1717
_configname = None
1818
_validatecorruption = False
19+
verifyseconds = -1
1920

2021
def __init__(self, configname):
2122
self._restoretemplate = BackupTemplate('restoretemplate.cfg')

0 commit comments

Comments
 (0)