diff options
author | Jeremy Katz <katzj@redhat.com> | 2005-01-13 21:27:45 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2005-01-13 21:27:45 +0000 |
commit | 2e2309103450521fc95d89591ebf635093b0782b (patch) | |
tree | 78949c654f70edc8edbe4723aae409251f7fc5b8 /scripts/upd-instroot | |
parent | 05803165c39bf9db7f4e574c0ba0f4b31955ee1c (diff) | |
download | anaconda-2e2309103450521fc95d89591ebf635093b0782b.tar.gz anaconda-2e2309103450521fc95d89591ebf635093b0782b.tar.xz anaconda-2e2309103450521fc95d89591ebf635093b0782b.zip |
2005-01-13 Jeremy Katz <katzj@redhat.com>
* scripts/upd-instroot: Use busybox for our shell instead of ash
Diffstat (limited to 'scripts/upd-instroot')
-rwxr-xr-x | scripts/upd-instroot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/upd-instroot b/scripts/upd-instroot index d526c0a1f..44b45d9e6 100755 --- a/scripts/upd-instroot +++ b/scripts/upd-instroot @@ -1014,7 +1014,7 @@ for p in $DEST $DESTGR; do rm -f $p/bin/ash ln -s bash $p/bin/sh else - ln -s ash $p/bin/sh + ln -sf busybox $p/bin/sh fi [ -d $p/bin ] || die "ERROR: directory missing: $p/bin" |