summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2012-12-11 20:35:10 +0100
committerDaniel Baumann <mail@daniel-baumann.ch>2013-05-06 14:50:02 +0200
commit5e75d12e6deb23013ac8d0293620bf60f6050788 (patch)
treecd757d094b2aec94d3448f8a79722d81b9e7035f
parentb109ddb21db574bc91d55edb6453cc2d4751ee08 (diff)
downloadvyos-live-build-5e75d12e6deb23013ac8d0293620bf60f6050788.tar.gz
vyos-live-build-5e75d12e6deb23013ac8d0293620bf60f6050788.zip
Removing not really useful symlinks example hook.
-rwxr-xr-xexamples/hooks/symlinks.chroot22
1 files changed, 0 insertions, 22 deletions
diff --git a/examples/hooks/symlinks.chroot b/examples/hooks/symlinks.chroot
deleted file mode 100755
index b0f2eea47..000000000
--- a/examples/hooks/symlinks.chroot
+++ /dev/null
@@ -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