mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

maudj
17.03.2009 fe55d9b5e664c722709a2cb6e1df3b31b954bcdd
add recurring task options for export and import - maudj
1 files modified
63 ■■■■■ changed files
opends/tests/staf-tests/shared/functions/dsadm.xml 63 ●●●●● patch | view | raw | blame | history
opends/tests/staf-tests/shared/functions/dsadm.xml
@@ -816,6 +816,14 @@
        </function-arg-description>
        <function-arg-property name="type" value="string" />
      </function-arg-def>
      <function-arg-def name="schedulePattern" type="optional">
        <function-arg-description>
          Indicates the task is recurring and will be scheduled
          according to the value argument expressed in crontab(5)
          compatible time/date pattern
        </function-arg-description>
        <function-arg-property name="type" value="string"/>
      </function-arg-def>
    </function-map-args>
    
    <sequence>
@@ -901,6 +909,9 @@
        if startTask:
          STAFCmdParamsList.append('-t %s' % startTask)
                  
        if schedulePattern:
          STAFCmdParamsList.append('--recurringTask %s' % schedulePattern)
        STAFCmdParams=' '.join(STAFCmdParamsList)
        
      </script>
@@ -1508,6 +1519,14 @@
        </function-arg-description>
        <function-arg-property name="type" value="string" />
      </function-arg-def> 
      <function-arg-def name="schedulePattern" type="optional">
        <function-arg-description>
          Indicates the task is recurring and will be scheduled
          according to the value argument expressed in crontab(5)
          compatible time/date pattern
        </function-arg-description>
        <function-arg-property name="type" value="string"/>
      </function-arg-def>
    </function-map-args>
    <sequence>
@@ -1538,6 +1557,9 @@
        if startTask:
          STAFCmdParamsList.append('-t %s' % startTask)
                                                         
        if schedulePattern:
          STAFCmdParamsList.append('--recurringTask %s' % schedulePattern)
        STAFCmdParams=' '.join(STAFCmdParamsList)
        
      </script>
@@ -1894,6 +1916,20 @@
        </function-arg-description>
        <function-arg-property name="type" value="string" />
      </function-arg-def>
      <function-arg-def name="schedulePattern" type="optional">
        <function-arg-description>
          Indicates the task is recurring and will be scheduled
          according to the value argument expressed in crontab(5)
          compatible time/date pattern
        </function-arg-description>
        <function-arg-property name="type" value="string"/>
      </function-arg-def>
      <function-arg-def name="backupID" type="optional">
        <function-arg-description>
          Use the provided identifier for the backup
        </function-arg-description>
        <function-arg-property name="type" value="string"/>
      </function-arg-def>
    </function-map-args>
    <sequence>
@@ -1923,6 +1959,13 @@
        if startTask:
          STAFCmdParamsList.append('-t %s' % startTask)
                                                         
       if schedulePattern:
          STAFCmdParamsList.append('--recurringTask %s' % schedulePattern)
       if backupID:
          STAFCmdParamsList.append('-I %s' % backupID)
        STAFCmdParams=' '.join(STAFCmdParamsList)
        
      </script>
@@ -2238,6 +2281,20 @@
        </function-arg-description>
        <function-arg-property name="type" value="string" />
      </function-arg-def>
      <function-arg-def name="schedulePattern" type="optional">
        <function-arg-description>
          Indicates the task is recurring and will be scheduled
          according to the value argument expressed in crontab(5)
          compatible time/date pattern
        </function-arg-description>
        <function-arg-property name="type" value="string"/>
      </function-arg-def>
      <function-arg-def name="backupID" type="optional">
        <function-arg-description>
          Use the provided identifier for the backup
        </function-arg-description>
        <function-arg-property name="type" value="string"/>
      </function-arg-def>
    </function-map-args>
    <sequence>
@@ -2264,6 +2321,12 @@
        if startTask:
          STAFCmdParamsList.append('-t %s' % startTask)
                                                         
        if schedulePattern:
          STAFCmdParamsList.append('--recurringTask %s' % schedulePattern)
        if backupID:
          STAFCmdParamsList.append('-I %s' % backupID)
        STAFCmdParams=' '.join(STAFCmdParamsList)
        
      </script>