blob: 230c2b5f8b3617c451458bc7ff867fe7fd0d6c54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
# This is a hook for live-helper(7) to install autorun4linuxCD.
# autorun4linuxCD was written by Franklin Piat <fpiat@bigfoot.com>.
#
# To enable it, copy this hook into your config/binary_local-hooks directory.
cd binary
wget http://www.klabs.be/~fpiat/projects/autorun4linuxCD/autorun4linuxCD.tar.gz
tar xfz autorun4linuxCD.tar.gz
rm -f autorun4linuxCD.tar.gz
cd "${OLDPWD}"
|