diff options
author | Daniel Baumann <daniel@debian.org> | 2012-12-11 20:34:57 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-12-11 20:34:57 +0100 |
commit | f55ff084be6db41a0ef9bfd53172a68f710aaaff (patch) | |
tree | dfe628fdf4a7f83877fa4c70130f9c5c0693f7d0 /examples | |
parent | 134c9f5cbe10e3c4f305cb3951643a86903cc57e (diff) | |
download | vyos-live-build-f55ff084be6db41a0ef9bfd53172a68f710aaaff.tar.gz vyos-live-build-f55ff084be6db41a0ef9bfd53172a68f710aaaff.zip |
Removing not really useful symlinks example hook.
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/hooks/symlinks.chroot | 22 |
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 |