-
Notifications
You must be signed in to change notification settings - Fork 18
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
Anaconda - "Pane is dead" #121
Comments
I think I reproduced this and know what's causing the issue. When you add a commit, a new folder is created based on the commit hash in the work directory. The build system is supposed to pull in all of the RPMs or copy over the cache directory in lorax. I am assuming neither of those are happening. |
This time, I did the following:
diff --git a/kickstart/clip-rhel7/clip-rhel7.ks b/kickstart/clip-rhel7/clip-rhel7.ks index 8351176..2b4ac18 100644 --- a/kickstart/clip-rhel7/clip-rhel7.ks +++ b/kickstart/clip-rhel7/clip-rhel7.ks @@ -357,6 +357,7 @@ cat <<- EOF > $AIDE_SCRIPT EOF /bin/chmod 755 $AIDE_SCRIPT +/sbin/restorecon /root/aide.sh /usr/bin/cat <<- EOF > /etc/systemd/system/aide.service [Unit]
diff --git a/kickstart/clip-rhel7/clip-rhel7.ks b/kickstart/clip-rhel7/clip-rhel7.ks index 2b4ac18..5e65cd3 100644 --- a/kickstart/clip-rhel7/clip-rhel7.ks +++ b/kickstart/clip-rhel7/clip-rhel7.ks @@ -343,7 +343,6 @@ AIDE_SCRIPT=/root/aide.sh echo "configuring AIDE" cat <<- EOF > $AIDE_SCRIPT #!/bin/sh - /bin/rm -f $AIDE_SCRIPT /bin/mv /sbin/aide $AIDE_DIR/aide /bin/mv /etc/aide.conf $AIDE_DIR/aide.conf /bin/ln -s $AIDE_DIR/aide /usr/sbin/aide @@ -353,7 +352,6 @@ cat <<- EOF > $AIDE_SCRIPT /sbin/aide --init --config=$AIDE_DIR/aide.conf /bin/mv $AIDE_DIR/aide.db.new.gz $AIDE_DIR/aide.db.gz /usr/bin/systemctl disable aide.service - /usr/sbin/reboot EOF
|
Unfortunately I was not able to reproduce the issue with the above steps. |
This is still not consistently reproduceable. We will want to document this as a known issue. |
After doing a
make bare
and./bootstrap.sh
, an ISO is produced.During install-time, the following error/stack-trace is seen.
We need to figure out what's causing this and either fix it or document it as a known issue.
The text was updated successfully, but these errors were encountered: