diff options
author | Eric Edgar <rocket@gentoo.org> | 2005-04-27 17:44:58 +0000 |
---|---|---|
committer | Eric Edgar <rocket@gentoo.org> | 2005-04-27 17:44:58 +0000 |
commit | e9c71aeeb3ef4c4b385a00678cf795c3b958fd03 (patch) | |
tree | 419d3d0f9748b699511c829f4196e223edbeb27e /targets/stage3 | |
parent | Remove bind mounts before rm operations happen at startup (diff) | |
download | catalyst-e9c71aeeb3ef4c4b385a00678cf795c3b958fd03.tar.gz catalyst-e9c71aeeb3ef4c4b385a00678cf795c3b958fd03.tar.bz2 catalyst-e9c71aeeb3ef4c4b385a00678cf795c3b958fd03.zip |
Fix some exception handling in catalyst_support.py
remove intermediate destination folder of iso and tarball
Add additional tests for folders not found on host but defined
in spec file. Keep catalyst from erroring in this case.
Change exit code on shell scripts so that errors are reported to catalyst
and causes catalyst to die on errors
Fix bug in livecd-stage1-chroot.sh so that it uses USE flags properly
Added additional check for mkisofs. Informs user of where to get the program.
Removed autoresume code from ccache and distcc installation until I can figure
out a way to have the autoresume flag go someplace outside the chroot.
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@628 d1e1f19c-881f-0410-ab34-b69fee027534
Diffstat (limited to 'targets/stage3')
-rwxr-xr-x | targets/stage3/stage3-controller.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/targets/stage3/stage3-controller.sh b/targets/stage3/stage3-controller.sh index 1eb25548..e4689f7b 100755 --- a/targets/stage3/stage3-controller.sh +++ b/targets/stage3/stage3-controller.sh @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo/src/catalyst/targets/stage3/stage3-controller.sh,v 1.1 2005/04/04 17:48:33 rocket Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/targets/stage3/stage3-controller.sh,v 1.2 2005/04/27 17:44:58 rocket Exp $ . ${clst_sharedir}/targets/support/functions.sh @@ -32,4 +32,4 @@ case $1 in esac -exit 0 +exit $? |