-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from mslacken/TWLeap
Adding openSUSE tumbleweed image
- Loading branch information
Showing
6 changed files
with
70 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
#!/bin/sh | ||
#!/bin/bash | ||
export LANG=C LC_CTYPE=C | ||
set -x | ||
LANG=C | ||
LC_CTYPE=C | ||
export LANG LC_CTYPE | ||
zypper clean --all | ||
zypper clean -a |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
/boot/ | ||
/var/tmp | ||
/usr/share/GeoIP | ||
/usr/share/doc | ||
/usr/share/man |
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,54 @@ | ||
FROM opensuse/tumbleweed:latest | ||
RUN zypper update -y \ | ||
&& zypper install -yt pattern \ | ||
base \ | ||
&& zypper install -y \ | ||
bash \ | ||
coreutils \ | ||
cpio \ | ||
cronie \ | ||
e2fsprogs \ | ||
ethtool \ | ||
filesystem \ | ||
findutils \ | ||
gawk \ | ||
grep \ | ||
gzip \ | ||
ipmitool \ | ||
iproute2 \ | ||
iputils \ | ||
kernel-default \ | ||
less \ | ||
net-tools \ | ||
nfs-client \ | ||
openssh-clients \ | ||
openssh-server \ | ||
pam \ | ||
pciutils \ | ||
psmisc \ | ||
rsync \ | ||
rsyslog \ | ||
sed \ | ||
strace \ | ||
sudo \ | ||
tar \ | ||
tcpdump \ | ||
timezone \ | ||
util-linux \ | ||
vim \ | ||
wget \ | ||
which \ | ||
wicked \ | ||
words \ | ||
zypper \ | ||
&& zypper clean \ | ||
&& systemctl enable sshd | ||
|
||
COPY excludes /etc/warewulf/ | ||
COPY container_exit.sh /etc/warewulf/ | ||
|
||
CMD [ "/bin/echo", "-e", \ | ||
"This image is intended to be used with the Warewulf cluster management and", \ | ||
"\nprovisioning system.", \ | ||
"\n", \ | ||
"\nFor more information about Warewulf, visit https://warewulf.org" ] |
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,4 @@ | ||
#!/bin/bash | ||
export LANG=C LC_CTYPE=C | ||
set -x | ||
zypper clean -a |
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,3 @@ | ||
/boot/ | ||
/usr/share/doc | ||
/usr/share/man |