49473fc52e
list when booting from CD. Both are removed from the target in the InstallerFinishScript. This closes ticket #4342. * Make Installer start in safemode as well. * Are there any objections to always have the Installer link in the Deskbar? I see no real reason to leave it out. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32686 a95241bf-73f2-0310-859d-f6bbb57e9c96
23 lines
355 B
Bash
23 lines
355 B
Bash
#!/bin/sh
|
|
## The installer finish script.
|
|
|
|
target=$1
|
|
|
|
if [ -z "$target" ]; then
|
|
echo "Usage: $0 <volume>"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -d "$target" ]; then
|
|
echo "$target isn't mounted"
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p "$target/var/tmp"
|
|
|
|
# remove Installer links
|
|
rm -f $target/home/Desktop/Installer
|
|
rm -f $target/home/config/be/Applications/Installer
|
|
|
|
makebootable "$target"
|