Former-commit-id:d537df4ab0
[formerly4453ad2d10
] [formerly65e1e4ee0b
] [formerlyd537df4ab0
[formerly4453ad2d10
] [formerly65e1e4ee0b
] [formerlyea1c82452b
[formerly65e1e4ee0b
[formerly 56068aa96fa6daf113861476bf4b7aebe2021ca4]]]] Former-commit-id:ea1c82452b
Former-commit-id:69f4822ad1
[formerly9f6780c4dd
] [formerly e63dac039e52161602915d3cf34685762acd5d9e [formerly7f1b468010
]] Former-commit-id: ed7bf459df1503ce7bd9500dc984c56a535b768f [formerlydafb6b18d8
] Former-commit-id:bb662ca175
24 lines
651 B
Bash
24 lines
651 B
Bash
#!/bin/bash
|
|
|
|
# The Build The Update Needs To Be Applied In.
|
|
# (MAX LENGTH = 10)
|
|
export DELTA_BUILD=
|
|
# The DR # Or Some Other Unique Identifier.
|
|
# (MAX LENGTH = 20)
|
|
export DELTA_ID=
|
|
# A Short Description About The Changes That Were Made.
|
|
# (MAX LENGTH = 255)
|
|
export DELTA_DESC=
|
|
|
|
# [OPTIONAL] The User That Should Be Used To Run The Script.
|
|
# The Update Manager Will "su" To Become The User If
|
|
# Necessary.
|
|
export DELTA_RUN_USER=
|
|
|
|
# Insert The Logic For The Update Here. Perform Checks To
|
|
# Ensure That The Update Commands Are Successful. Return "0"
|
|
# At The End If The Update Succeeds Or "1" If Any Part Of
|
|
# The Update Fails.
|
|
function runUpdate()
|
|
{
|
|
}
|