View Single Post
Posts: 37 | Thanked: 5 times | Joined on Feb 2007
#77
Another couple noob questions:

I had to hack hal to get it to install (put "exit 0" as the first line of /var/lib/dpkg/info/hal.preinst and /var/lib/dpkg/info/hal.postinst then run "apt-get -f install" to finish getting everything installed)...
Is it /debian/var/lib/dpkg/info/hal.preinst and /debian/var/lib/dpkg/info/hal.postinst (from the chroot)?

Also, "put "exit 0"" => should the file be:

Code:
#!/bin/sh
exit 0
set -e

etc.
or

Code:
#!/bin/sh
"exit 0"
set -e
Thanks and apologies for the dumb questions!