Skip to content

Instantly share code, notes, and snippets.

@jhgorse
Last active July 7, 2016 17:11
Show Gist options
  • Save jhgorse/eab9e44f8ccd7933145c51541ca27242 to your computer and use it in GitHub Desktop.
Save jhgorse/eab9e44f8ccd7933145c51541ca27242 to your computer and use it in GitHub Desktop.
An idempotent provision script
#export DEBIAN_FRONTEND=noninteractive
MARKER_FILE="/usr/local/etc/marker_file_1"
# Provision once
if [ -f "${MARKER_FILE}" ]; then
exit 0
fi
# Do stuff here
# ...
# Touch the marker file so we don't do this again
touch ${MARKER_FILE}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment