mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-17 10:10:25 +00:00
Let's start detecting the upcoming Debian 9 (Stretch)
This commit is contained in:
parent
826c91d4d5
commit
6931863007
1 changed files with 3 additions and 1 deletions
|
@ -828,8 +828,10 @@ __derive_debian_numeric_version() {
|
|||
# I've found an EC2 wheezy image which did not tell its version
|
||||
NUMERIC_VERSION=$(__parse_version_string "7.0")
|
||||
elif [ "$INPUT_VERSION" = "jessie/sid" ]; then
|
||||
# Let's start detecting the upcoming Debian 8 (Jessie)
|
||||
NUMERIC_VERSION=$(__parse_version_string "8.0")
|
||||
elif [ "$INPUT_VERSION" = "stretch/sid" ]; then
|
||||
# Let's start detecting the upcoming Debian 9 (Stretch)
|
||||
NUMERIC_VERSION=$(__parse_version_string "9.0")
|
||||
else
|
||||
echowarn "Unable to parse the Debian Version (codename: '$INPUT_VERSION')"
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue