6bc5671491
Apply: git diff --full-index --binary anaconda-23.19.10-1..anaconda-25.20.9-1 And resolve conflicts. QubesOS/qubes-issues#2574
28 lines
994 B
Plaintext
28 lines
994 B
Plaintext
# Note, this script log will not be copied to the installed system.
|
|
%post --nochroot
|
|
|
|
NOSAVE_INPUT_KS_FILE=/tmp/NOSAVE_INPUT_KS
|
|
NOSAVE_LOGS_FILE=/tmp/NOSAVE_LOGS
|
|
PRE_ANA_LOGS=/tmp/pre-anaconda-logs
|
|
|
|
if [ -e ${NOSAVE_LOGS_FILE} ]; then
|
|
rm -f ${NOSAVE_LOGS_FILE}
|
|
else
|
|
mkdir -p $ANA_INSTALL_PATH/var/log/anaconda
|
|
for log in anaconda.log syslog X.log program.log packaging.log storage.log ifcfg.log lvm.log dnf.librepo.log hawkey.log; do
|
|
[ -e /tmp/$log ] && cp /tmp/$log $ANA_INSTALL_PATH/var/log/anaconda/
|
|
done
|
|
[ -e /tmp/pre-anaconda-logs ] && cp -r $PRE_ANA_LOGS $ANA_INSTALL_PATH/var/log/anaconda
|
|
cp /tmp/ks-script*.log $ANA_INSTALL_PATH/var/log/anaconda/
|
|
journalctl -b > $ANA_INSTALL_PATH/var/log/anaconda/journal.log
|
|
chmod 0600 $ANA_INSTALL_PATH/var/log/anaconda/*
|
|
fi
|
|
|
|
if [ -e ${NOSAVE_INPUT_KS_FILE} ]; then
|
|
rm -f ${NOSAVE_INPUT_KS_FILE}
|
|
else
|
|
[ -e /run/install/ks.cfg ] && cp /run/install/ks.cfg $ANA_INSTALL_PATH/root/original-ks.cfg
|
|
fi
|
|
|
|
%end
|