Changes

stoney maintenance: OpenLDAP directory data organisation

3,655 bytes added, 11:31, 19 April 2015
/* Maintenance Unit Example */
</source>
Other possible maintenance windows range from daily maintenance windows to biyearly bi yearly maintenance windows. The following examples just show the relevant attributes.
Maintenance window every day between 09:30 and 10:30, starting on Monday, the 5th of January 2015.
<source lang="ldif">
objectclass: top
objectclass: sstMaintenanceObjectClass
objectclass: sstRelationship
uid: 4000003
description: The maintenance leaf for the virtual machine with the uid 1234567.
sstIsActive: TRUE
sstServicePriority: 3
sstCronRepeatType: daily # repeat type is daily
sstCronInterval: 1 # repeated every day
sstCronMinute: 30 # 30 Minutes past the hour
sstCronHour: 9 # 9 am
sstCronDuration: 60 # 60 minutes (one hoursstInformPersonUID: 4000002sstResponsiblePersonUID: 4000002sstNotificationWarning: maintenancesstBelongsToServiceUID: 1234567sstBelongsToResellerUID: 4000000sstBelongsToCustomerUID: 4000001)
</source>
Maintenance window every second day between 09:30 and 10:30, starting on Monday, the 5th of January 2015.
<source lang="ldif">
sstCronRepeatType: daily # repeat type is daily
sstCronInterval: 2 # repeat every second day
sstCronStartDate: 20150105 # starting on the fifth of January 2015
sstCronMinute: 30 # 30 Minutes past the hour
sstCronHour: 9 # 9 am
sstCronDuration: 60 # 60 minutes (one hour)
</source>
 
Maintenance window every two weeks on Monday between 09:30 and 10:30, starting on Monday, the 13th of April 2015.
<source lang="ldif">
sstCronRepeatType: weekly # repeat type is weekly
sstCronInterval: 2 # repeat every second week
sstCronStartDate: 20150413 # starting on Monday, the 13th of April 2015
sstCronDayOfWeek: 1 # on Monday
sstCronMinute: 30 # 30 Minutes past the hour
sstCronHour: 9 # 9 am
sstCronDuration: 60 # 60 minutes (one hour)
</source>
 
Maintenance window every six months on the 15. of the month between 09:30 and 10:30, starting on Wednesday, the 15th of April 2015.
<source lang="ldif">
sstCronRepeatType: monthly # repeat type is monthly
sstCronInterval: 6 # repeat every six months
sstCronStartDate: 20150415 # starting on Wednesday, the 15th of April 2015
sstCronDayOfMonth: 15 # on the 15th day of the month
sstCronMinute: 30 # 30 Minutes past the hour
sstCronHour: 9 # 9 am
sstCronDuration: 60 # 60 minutes (one hour)
</source>
 
Maintenance window every six months on the third Monday of the month between 09:30 and 10:30, starting on Monday, the 20th of April 2015.
<source lang="ldif">
sstCronRepeatType: monthly # repeat type is monthly
sstCronInterval: 6 # repeat every six months
sstCronStartDate: 20150420 # starting on Monday, the 20th of April 2015
sstCronOccurrenceInMonth: 3 # third occurence
sstCronDayOfWeek: 1 # Monday
sstCronMinute: 30 # 30 Minutes past the hour
sstCronHour: 9 # 9 am
sstCronDuration: 60 # 60 minutes (one hour)
</source>
 
Maintenance window every year on the 15th of March between 09:30 and 10:30, starting on Wednesday, the 11th of March 2015.
<source lang="ldif">
sstCronRepeatType: yearly # repeat type is yearly
sstCronInterval: 1 # repeat every year
sstCronStartDate: 20150311 # starting on Wednesday, the 11th of March 2015
sstCronDayOfMonth: 11 # on the 11th day of the month
sstCronMinute: 30 # 30 Minutes past the hour
sstCronHour: 9 # 9 am
sstCronDuration: 60 # 60 minutes (one hour)
</source>
 
Maintenance window every year on the third Monday of March between 09:30 and 10:30, starting on Monday, the 16th of March 2015.
<source lang="ldif">
sstCronRepeatType: yearly # repeat type is yearly
sstCronInterval: 1 # repeat every year
sstCronStartDate: 20150316 # starting on Monday, the 16th of March 2015
sstCronMonthOfyear: 3 # third month of the year
sstCronOccurrenceInMonth: 3 # third occurence
sstCronDayOfWeek: 1 # Monday
sstCronMinute: 30 # 30 Minutes past the hour
sstCronHour: 9 # 9 am
sstCronDuration: 60 # 60 minutes (one hour)
</source>
 
Maintenance window every two years on the third Monday of March between 09:30 and 10:30, starting on Monday, the 16th of March 2015.
<source lang="ldif">
sstCronRepeatType: yearly # repeat type is yearly
sstCronInterval: 2 # repeat every two years
sstCronStartDate: 20150316 # starting on Monday, the 16th of March 2015
sstCronMonthOfyear: 3 # third month of the year
sstCronOccurrenceInMonth: 3 # third occurence
sstCronDayOfMonth: 1 # Monday
sstCronMinute: 30 # 30 Minutes past the hour
sstCronHour: 9 # 9 am
sstCronDuration: 60 # 60 minutes (one hour)
</source>
The following table describes the different attributes:
SLB, editor, reviewer
3,368
edits