-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(PA-6002) Add SLES-11 (Intel) support
- Loading branch information
1 parent
10f1bca
commit 9d72936
Showing
6 changed files
with
31 additions
and
6 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
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
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,25 @@ | ||
platform "sles-11-x86_64" do |plat| | ||
plat.servicedir "/etc/init.d" | ||
plat.defaultdir "/etc/sysconfig" | ||
plat.servicetype "sysv" | ||
|
||
plat.add_build_repository "http://osmirror.delivery.puppetlabs.net/sles-11-deps-x86_64/sles-11-deps-x86_64.repo" | ||
plat.add_build_repository "http://pl-build-tools.delivery.puppetlabs.net/yum/sles/11/x86_64/pl-build-tools-sles-11-x86_64.repo" | ||
packages = [ | ||
"aaa_base", | ||
"autoconf", | ||
"automake", | ||
"libbz2-devel", | ||
"make", | ||
"pkgconfig", | ||
"pl-cmake", | ||
"pl-gcc", | ||
"readline-devel", | ||
"rsync", | ||
"zlib-devel" | ||
] | ||
plat.install_build_dependencies_with "zypper -n --no-gpg-checks install -y" | ||
plat.provision_with("zypper -n --no-gpg-checks install -y #{packages.join(' ')}") | ||
#plat.provision_with("zypper install -y --oldpackage pl-gcc=4.8.2-1") | ||
plat.vmpooler_template "sles-11-x86_64" | ||
end |
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