File opensuse-15.2.tmpl of Package warewulf-vnfs-gnu12-openmpi4 (Revision 1d4b7a2e114fa736ac1988eac9e56d08)
Currently displaying revision 1d4b7a2e114fa736ac1988eac9e56d08 , Show latest
37
1
#DESC: OpenSUSE LEAP 15.2
2
# The general SUSE include has all of the necessary functions, but requires
3
# some basic variables specific to each chroot type to be defined.
4
5
. include-suse
6
7
# Uncomment and set to use a specific kernel version
8
# KVERSION=latest
9
10
# Uncomment to disable GPG checks on added repos
11
# REPO_NOGPGHECK=1
12
13
# Comma-seperated location(s) of the YUM repositories
14
if [ "$(uname -m)" = "x86_64" ]; then
15
ZYPP_MIRROR="http://download.opensuse.org/distribution/leap/15.2/repo/oss/,\
16
http://download.opensuse.org/update/leap/15.2/oss/"
17
elif [ "$(uname -m)" = "aarch64" ]; then
18
ZYPP_MIRROR="http://download.opensuse.org/ports/aarch64/distribution/leap/15.2/repo/oss/,\
19
#http://download.opensuse.org/ports/aarch64/update/leap/15.2/oss/"
20
else
21
echo "Unsupported Architecture"
22
exit 1
23
fi
24
25
# Install only what is necessary/specific for this distribution
26
PKGLIST="systemd-sysvinit aaa_base bash dracut openSUSE-release coreutils \
27
e2fsprogs ethtool filesystem findutils gawk grep iproute2 iputils \
28
mingetty net-tools nfs-kernel-server pam rpcbind procps psmisc shadow \
29
rsync sed rsyslog tcpd timezone util-linux tar less gzip kmod-compat \
30
udev openssh dhcp-client pciutils vim strace cron cpupower cpio wget \
31
zypper which"
32
33
34
35
36
# vim:filetype=sh:syntax=sh:expandtab:ts=4:sw=4:
37