forked from puppetlabs/puppetlabs-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved container name sanitisation code to puppet function. (puppetlab…
…s#401) Make sanitisation code available for external modules so it can be reused when working with scripts and container names.
- Loading branch information
Showing
3 changed files
with
22 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# == Function: docker::sanitised_name | ||
# | ||
# Function to sanitise container name. | ||
# | ||
# === Parameters | ||
# | ||
# [*name*] | ||
# Name to sanitise | ||
# | ||
function docker::sanitised_name($name){ | ||
regsubst($name, '[^0-9A-Za-z.\-_]', '-', 'G') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters