We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c729ab3 commit 36c2410Copy full SHA for 36c2410
lib/vanagon/platform/defaults/sles-16-x86_64.rb
@@ -0,0 +1,27 @@
1
+platform "sles-16-x86_64" do |plat|
2
+ plat.servicedir "/usr/lib/systemd/system"
3
+ plat.defaultdir "/etc/sysconfig"
4
+ plat.servicetype "systemd"
5
+
6
+ packages = %w(
7
+ aaa_base
8
+ autoconf
9
+ automake
10
+ cmake
11
+ curl
12
+ gcc
13
+ gcc-c++
14
+ gettext-tools
15
+ make
16
+ rpm-build
17
+ rsync
18
+ systemd
19
+ which
20
+ )
21
+ plat.provision_with "zypper -n --no-gpg-checks install -y #{packages.join(' ')}"
22
+ plat.install_build_dependencies_with "zypper -n --no-gpg-checks install -y"
23
+ plat.vmpooler_template "sles-16-x86_64"
24
+ plat.docker_registry "registry.suse.com/bci"
25
+ plat.docker_image "bci-base:16.0"
26
+ plat.docker_arch "linux/amd64"
27
+end
0 commit comments