Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workaround for openhpc/ohpc#2061 #63

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions rockylinux-8/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ RUN systemctl unmask \
systemd-logind.service \
systemd-remount-fs.service

RUN chmod u+w / # https://github.com/openhpc/ohpc/issues/2061

COPY excludes /etc/warewulf/
COPY container_exit.sh /etc/warewulf/

Expand Down
2 changes: 2 additions & 0 deletions rockylinux-8/Containerfile-fixed
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ RUN systemctl unmask \
systemd-logind.service \
systemd-remount-fs.service

RUN chmod u+w / # https://github.com/openhpc/ohpc/issues/2061

COPY excludes /etc/warewulf/
COPY container_exit.sh /etc/warewulf/

Expand Down
2 changes: 2 additions & 0 deletions rockylinux-8/Containerfile-vault
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ RUN systemctl unmask \
systemd-logind.service \
systemd-remount-fs.service

RUN chmod u+w / # https://github.com/openhpc/ohpc/issues/2061

COPY excludes /etc/warewulf/
COPY container_exit.sh /etc/warewulf/

Expand Down
2 changes: 2 additions & 0 deletions rockylinux-9/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ RUN dnf update -y \
&& dnf remove -y selinux-policy \
&& dnf clean all

RUN chmod u+w / # https://github.com/openhpc/ohpc/issues/2061

COPY excludes /etc/warewulf/
COPY container_exit.sh /etc/warewulf/

Expand Down
2 changes: 2 additions & 0 deletions rockylinux-9/Containerfile-fixed
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ RUN dnf update -y \
&& dnf remove -y selinux-policy \
&& dnf clean all

RUN chmod u+w / # https://github.com/openhpc/ohpc/issues/2061

COPY excludes /etc/warewulf/
COPY container_exit.sh /etc/warewulf/

Expand Down
2 changes: 2 additions & 0 deletions rockylinux-9/Containerfile-vault
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ RUN dnf update -y \
&& dnf remove -y selinux-policy \
&& dnf clean all

RUN chmod u+w / # https://github.com/openhpc/ohpc/issues/2061

COPY excludes /etc/warewulf/
COPY container_exit.sh /etc/warewulf/

Expand Down
Loading