-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(PA-6004) Add SLES-11 (Intel) support
- Add SLES-11 (Intel) platform definition file - Since tar command on the SLES-11 VM doesn't understand --skip-old-files option due to it being an older version, do not use that option while installing puppet-runtime (pxp-agent.rb)
- Loading branch information
1 parent
bbba8cb
commit 30195a5
Showing
2 changed files
with
10 additions
and
1 deletion.
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,9 @@ | ||
platform "sles-11-x86_64" do |plat| | ||
plat.servicedir "/etc/init.d" | ||
plat.defaultdir "/etc/sysconfig" | ||
plat.servicetype "sysv" | ||
packages = ["make", "rsync"] | ||
plat.provision_with "zypper -n --no-gpg-checks install -y #{packages.join(' ')}" | ||
plat.install_build_dependencies_with "zypper -n --no-gpg-checks install -y" | ||
plat.vmpooler_template "sles-11-x86_64" | ||
end |