File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 66 "version" : {
77 "description" : " The release of PE you want to install e.g. 2018.1 (Default: 2019.2)" ,
88 "type" : " Optional[String[1]]"
9+ },
10+ "os" : {
11+ "description" : " The os of PE you are installing e.g. ubuntu-22.04-amd64 (Default: el-7-x86_64)" ,
12+ "type" : " Optional[String[1]]"
913 }
1014 },
1115 "private" : true
Original file line number Diff line number Diff line change 77 PE_RELEASE=$PT_version
88fi
99
10+ if [ -z ${PT_os+x} ]; then
11+ PE_OS=el-7-x86_64
12+
13+ else
14+ PE_OS=$PT_os
15+ fi
16+
1017PE_LATEST=$( curl https://artifactory.delivery.puppetlabs.net/artifactory/generic_enterprise__local/" ${PE_RELEASE} " /ci-ready/LATEST)
11- PE_FILE_NAME=puppet-enterprise-${PE_LATEST} -el-7-x86_64
18+ PE_FILE_NAME=puppet-enterprise-${PE_LATEST} -${PE_OS}
1219TAR_FILE=${PE_FILE_NAME} .tar
1320DOWNLOAD_URL=https://artifactory.delivery.puppetlabs.net/artifactory/generic_enterprise__local/${PE_RELEASE} /ci-ready/${TAR_FILE}
1421
You can’t perform that action at this time.
0 commit comments