Removing not really useful symlinks example hook.
This commit is contained in:
parent
ba4a3ce12e
commit
55c9617e61
|
@ -1,22 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# This is a hook for live-build(7) to install localepurge.
|
|
||||||
# To enable it, copy or symlink this hook into your config/chroot_local-hooks
|
|
||||||
# directory.
|
|
||||||
#
|
|
||||||
|
|
||||||
_PURGE=""
|
|
||||||
|
|
||||||
if [ ! -x "$(which symlinks 2>/dev/null)" ]
|
|
||||||
then
|
|
||||||
_PURGE="true"
|
|
||||||
|
|
||||||
apt-get install symlinks
|
|
||||||
fi
|
|
||||||
|
|
||||||
symlinks -c -r -s /
|
|
||||||
|
|
||||||
if [ "${_PURGE}" = "true" ]
|
|
||||||
then
|
|
||||||
apt-get remove --purge symlinks
|
|
||||||
fi
|
|
Loading…
Reference in New Issue