awips2/rpms/delta/template/template.sh
Bryan Kowal 9f6780c4dd Issue #202 - restoring rpm directory to ss_sync.
Former-commit-id: 4453ad2d10 [formerly 65e1e4ee0b] [formerly ea1c82452b [formerly 56068aa96fa6daf113861476bf4b7aebe2021ca4]]
Former-commit-id: ea1c82452b
Former-commit-id: 7f1b468010
2012-01-20 13:38:00 -06:00

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()
{
}