Adding debian version 2.0~a1-1.
This commit is contained in:
parent
af64109b62
commit
5e4952e8a7
23
Makefile
23
Makefile
|
@ -8,7 +8,7 @@ all: test install
|
||||||
|
|
||||||
test:
|
test:
|
||||||
# Checking for syntax errors
|
# Checking for syntax errors
|
||||||
for SCRIPT in functions.sh functions/* examples/*/*.sh helpers/* hooks/*; \
|
for SCRIPT in live-helper.sh functions/* examples/*/*.sh helpers/* hooks/*; \
|
||||||
do \
|
do \
|
||||||
sh -n $$SCRIPT; \
|
sh -n $$SCRIPT; \
|
||||||
done
|
done
|
||||||
|
@ -16,7 +16,7 @@ test:
|
||||||
# Checking for bashisms
|
# Checking for bashisms
|
||||||
if [ -x /usr/bin/checkbashisms ]; \
|
if [ -x /usr/bin/checkbashisms ]; \
|
||||||
then \
|
then \
|
||||||
checkbashisms functions.sh functions/* examples/*/*.sh helpers/* hooks/*; \
|
checkbashisms live-helper.sh functions/* examples/*/*.sh helpers/* hooks/*; \
|
||||||
else \
|
else \
|
||||||
echo "WARNING: skipping bashism test - you need to install devscripts."; \
|
echo "WARNING: skipping bashism test - you need to install devscripts."; \
|
||||||
fi
|
fi
|
||||||
|
@ -25,13 +25,13 @@ build:
|
||||||
@echo "Nothing to build."
|
@echo "Nothing to build."
|
||||||
|
|
||||||
install:
|
install:
|
||||||
# Installing executables
|
|
||||||
mkdir -p $(DESTDIR)/usr/bin
|
|
||||||
cp helpers/* $(DESTDIR)/usr/bin
|
|
||||||
|
|
||||||
# Installing shared data
|
# Installing shared data
|
||||||
mkdir -p $(DESTDIR)/usr/share/live-helper
|
mkdir -p $(DESTDIR)/usr/share/live-helper
|
||||||
cp -r data examples functions.sh functions hooks includes lists templates $(DESTDIR)/usr/share/live-helper
|
cp -r data examples live-helper.sh functions helpers hooks includes lists templates $(DESTDIR)/usr/share/live-helper
|
||||||
|
|
||||||
|
# Installing executables
|
||||||
|
mkdir -p $(DESTDIR)/usr/bin
|
||||||
|
mv $(DESTDIR)/usr/share/live-helper/helpers/lh $(DESTDIR)/usr/share/live-helper/helpers/live-helper $(DESTDIR)/usr/bin
|
||||||
|
|
||||||
# Installing documentation
|
# Installing documentation
|
||||||
mkdir -p $(DESTDIR)/usr/share/doc/live-helper
|
mkdir -p $(DESTDIR)/usr/share/doc/live-helper
|
||||||
|
@ -64,15 +64,12 @@ install:
|
||||||
mkdir -p $(DESTDIR)/var/log
|
mkdir -p $(DESTDIR)/var/log
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
# Uninstalling executables
|
|
||||||
for HELPER in helpers/*; \
|
|
||||||
do \
|
|
||||||
rm -f $(DESTDIR)/usr/bin/$$(basename $$HELPER); \
|
|
||||||
done
|
|
||||||
|
|
||||||
# Uninstalling shared data
|
# Uninstalling shared data
|
||||||
rm -rf $(DESTDIR)/usr/share/live-helper
|
rm -rf $(DESTDIR)/usr/share/live-helper
|
||||||
|
|
||||||
|
# Uninstalling executables
|
||||||
|
rm -f $(DESTDIR)/usr/bin/lh $(DESTDIR)/usr/bin/live-helper
|
||||||
|
|
||||||
# Uninstalling documentation
|
# Uninstalling documentation
|
||||||
rm -rf $(DESTDIR)/usr/share/doc/live-helper
|
rm -rf $(DESTDIR)/usr/share/doc/live-helper
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
live-helper (1.0.6-2) unstable; urgency=high
|
live-helper (2.0~a1-1) experimental; urgency=low
|
||||||
|
|
||||||
* Replacing sed 4.2 command to assemble debootstraps components option
|
* Renaming categories to archive areas (Closes: #519690).
|
||||||
with a less advanced one, in order to work on legacy distributions.
|
* Renaming functions.sh to live-helper.sh.
|
||||||
|
* Installing helpers to /usr/share/live-helper/helpers instead of
|
||||||
|
/usr/bin.
|
||||||
|
* Removing legacy function for dashed commands.
|
||||||
|
|
||||||
-- Daniel Baumann <daniel@debian.org> Sun, 22 Nov 2009 13:35:50 +0100
|
-- Daniel Baumann <daniel@debian.org> Sun, 15 Nov 2009 22:42:59 +0100
|
||||||
|
|
||||||
live-helper (1.0.6-1) unstable; urgency=medium
|
live-helper (1.0.6-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
PROGRAM="$(basename ${0})"
|
PROGRAM="$(basename ${0})"
|
||||||
PACKAGE="live-helper"
|
PACKAGE="live-helper"
|
||||||
VERSION="1.0.6-1"
|
VERSION="2.0~a1-1"
|
||||||
CONFIG_VERSION="$(echo ${VERSION} | awk -F- '{ print $1 }')"
|
CONFIG_VERSION="$(echo ${VERSION} | awk -F- '{ print $1 }')"
|
||||||
|
|
||||||
PATH="${PWD}/scripts:${PATH}"
|
PATH="${PWD}/scripts:${PATH}"
|
||||||
|
|
|
@ -405,16 +405,16 @@ Set_defaults ()
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Setting categories value
|
# Setting archive areas value
|
||||||
if [ -z "${LH_CATEGORIES}" ]
|
if [ -z "${LH_ARCHIVE_AREAS}" ]
|
||||||
then
|
then
|
||||||
case "${LH_MODE}" in
|
case "${LH_MODE}" in
|
||||||
ubuntu)
|
ubuntu)
|
||||||
LH_CATEGORIES="main restricted"
|
LH_ARCHIVE_AREAS="main restricted"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
LH_CATEGORIES="main"
|
LH_ARCHIVE_AREAS="main"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# legacy.sh - handle live-helper 2.x warnigns
|
|
||||||
# Copyright (C) 2006-2009 Daniel Baumann <daniel@debian.org>
|
|
||||||
#
|
|
||||||
# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
|
|
||||||
# This is free software, and you are welcome to redistribute it
|
|
||||||
# under certain conditions; see COPYING for details.
|
|
||||||
|
|
||||||
# Obsoleting 'lh_foo_bar' calls in favour for 'lh foo_bar'
|
|
||||||
|
|
||||||
BASENAME="$(basename ${0})"
|
|
||||||
|
|
||||||
if [ -z "${LH}" ] && [ "$(echo ${BASENAME} | awk '{ print $1 }')" != "lh" ]
|
|
||||||
then
|
|
||||||
Echo_warning "live-helper 2.0 will deprecate all dashed forms of commands."
|
|
||||||
Echo_warning "Please use \'$(echo ${BASENAME} | sed -e 's|lh_|lh |')\' instead of \'${BASENAME}\'."
|
|
||||||
fi
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'utility to build Debian Live systems')"
|
DESCRIPTION="$(Echo 'utility to build Debian Live systems')"
|
||||||
|
@ -34,7 +34,10 @@ case "${1}" in
|
||||||
COMMAND="${1}"
|
COMMAND="${1}"
|
||||||
shift
|
shift
|
||||||
|
|
||||||
if [ -x "$(which lh_${COMMAND} 2>/dev/null)" ]
|
if [ -x /usr/share/live-helper/helpers/lh_${COMMAND} ]
|
||||||
|
then
|
||||||
|
LH=1 exec /usr/share/live-helper/helpers/lh_"${COMMAND}" "${@}"
|
||||||
|
elif [ -x "$(which lh_${COMMAND} 2>/dev/null)" ]
|
||||||
then
|
then
|
||||||
LH=1 exec lh_"${COMMAND}" "${@}"
|
LH=1 exec lh_"${COMMAND}" "${@}"
|
||||||
else
|
else
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'build binary images')"
|
DESCRIPTION="$(Echo 'build binary images')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'copy chroot into chroot')"
|
DESCRIPTION="$(Echo 'copy chroot into chroot')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'install debian-installer into binary')"
|
DESCRIPTION="$(Echo 'install debian-installer into binary')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'install disk information into binary')"
|
DESCRIPTION="$(Echo 'install disk information into binary')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'encrypts rootfs')"
|
DESCRIPTION="$(Echo 'encrypts rootfs')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'installs grub into binary')"
|
DESCRIPTION="$(Echo 'installs grub into binary')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'installs grub2 into binary')"
|
DESCRIPTION="$(Echo 'installs grub2 into binary')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'copy files into binary')"
|
DESCRIPTION="$(Echo 'copy files into binary')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'build iso binary image')"
|
DESCRIPTION="$(Echo 'build iso binary image')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'install linux-image into binary')"
|
DESCRIPTION="$(Echo 'install linux-image into binary')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'execute local hooks in binary')"
|
DESCRIPTION="$(Echo 'execute local hooks in binary')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'copy files into binary')"
|
DESCRIPTION="$(Echo 'copy files into binary')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'install local packages into binary')"
|
DESCRIPTION="$(Echo 'install local packages into binary')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'create manifest')"
|
DESCRIPTION="$(Echo 'create manifest')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'create binary md5sums')"
|
DESCRIPTION="$(Echo 'create binary md5sums')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'installs a memtest into binary')"
|
DESCRIPTION="$(Echo 'installs a memtest into binary')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'build netboot binary image')"
|
DESCRIPTION="$(Echo 'build netboot binary image')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'build rootfs image')"
|
DESCRIPTION="$(Echo 'build rootfs image')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'installs silo into binary')"
|
DESCRIPTION="$(Echo 'installs silo into binary')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'installs syslinux into binary')"
|
DESCRIPTION="$(Echo 'installs syslinux into binary')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'build harddisk binary image')"
|
DESCRIPTION="$(Echo 'build harddisk binary image')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'build binary image')"
|
DESCRIPTION="$(Echo 'build binary image')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'build binary image')"
|
DESCRIPTION="$(Echo 'build binary image')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'copy win32-loader into binary')"
|
DESCRIPTION="$(Echo 'copy win32-loader into binary')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'installs yaboot into binary')"
|
DESCRIPTION="$(Echo 'installs yaboot into binary')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'bootstrap a Debian system')"
|
DESCRIPTION="$(Echo 'bootstrap a Debian system')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'cache bootstrap stage')"
|
DESCRIPTION="$(Echo 'cache bootstrap stage')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'bootstrap a Debian system with cdebootstrap(1)')"
|
DESCRIPTION="$(Echo 'bootstrap a Debian system with cdebootstrap(1)')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'bootstrap by copying the host system')"
|
DESCRIPTION="$(Echo 'bootstrap by copying the host system')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'bootstrap a Debian system with debootstrap(8)')"
|
DESCRIPTION="$(Echo 'bootstrap a Debian system with debootstrap(8)')"
|
||||||
|
@ -57,10 +57,10 @@ then
|
||||||
DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --arch ${LH_ARCHITECTURE}"
|
DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --arch ${LH_ARCHITECTURE}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${LH_CATEGORIES}" != "main" ]
|
if [ "${LH_ARCHIVE_AREAS}" != "main" ]
|
||||||
then
|
then
|
||||||
# Modify categories to remove leading/trailing whitespaces and replace other whitepspace with commas
|
# Modify archive areas to remove leading/trailing whitespaces and replace other whitepspace with commas
|
||||||
DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --components $(echo ${LH_ARCHIVE_AREAS} | sed -e 's| |,|g')"
|
DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS} --components $(echo ${LH_ARCHIVE_AREAS} | sed -E -e 's/^[ \t]*//;s/[ \t]*$//' -e 's/[ \t]+/,/g')"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "${LH_BOOTSTRAP_CONFIG}" ]
|
if [ -n "${LH_BOOTSTRAP_CONFIG}" ]
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Read meta config
|
# Read meta config
|
||||||
if [ "${1}" != "noautoconfig" ] && [ -x scripts/build ]
|
if [ "${1}" != "noautoconfig" ] && [ -x scripts/build ]
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'customize the Debian system')"
|
DESCRIPTION="$(Echo 'customize the Debian system')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'manage /etc/apt/apt.conf')"
|
DESCRIPTION="$(Echo 'manage /etc/apt/apt.conf')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'cache chroot stage')"
|
DESCRIPTION="$(Echo 'cache chroot stage')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'manage /etc/debian_chroot')"
|
DESCRIPTION="$(Echo 'manage /etc/debian_chroot')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'mount /dev/pts')"
|
DESCRIPTION="$(Echo 'mount /dev/pts')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'manage /sbin/dpkg')"
|
DESCRIPTION="$(Echo 'manage /sbin/dpkg')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'execute hacks in chroot')"
|
DESCRIPTION="$(Echo 'execute hacks in chroot')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'execute hooks in chroot')"
|
DESCRIPTION="$(Echo 'execute hooks in chroot')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'manage /bin/hostname')"
|
DESCRIPTION="$(Echo 'manage /bin/hostname')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'manage /etc/hosts')"
|
DESCRIPTION="$(Echo 'manage /etc/hosts')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'install queued packages into chroot')"
|
DESCRIPTION="$(Echo 'install queued packages into chroot')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'make build interactive')"
|
DESCRIPTION="$(Echo 'make build interactive')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'manage /etc/kernel-img.conf')"
|
DESCRIPTION="$(Echo 'manage /etc/kernel-img.conf')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'execute local hooks in chroot')"
|
DESCRIPTION="$(Echo 'execute local hooks in chroot')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'copy local files into chroot')"
|
DESCRIPTION="$(Echo 'copy local files into chroot')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'queue install of local packages into chroot')"
|
DESCRIPTION="$(Echo 'queue install of local packages into chroot')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'apply local patches against chroot')"
|
DESCRIPTION="$(Echo 'apply local patches against chroot')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'execute local preseed in chroot')"
|
DESCRIPTION="$(Echo 'execute local preseed in chroot')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'install localization packages into chroot')"
|
DESCRIPTION="$(Echo 'install localization packages into chroot')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'queue install of packages into chroot')"
|
DESCRIPTION="$(Echo 'queue install of packages into chroot')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'queue install of packages lists into chroot')"
|
DESCRIPTION="$(Echo 'queue install of packages lists into chroot')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'execute preseed in chroot')"
|
DESCRIPTION="$(Echo 'execute preseed in chroot')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'mount /proc')"
|
DESCRIPTION="$(Echo 'mount /proc')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'manage /etc/resolv.conf')"
|
DESCRIPTION="$(Echo 'manage /etc/resolv.conf')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'mount /selinux')"
|
DESCRIPTION="$(Echo 'mount /selinux')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'manage /etc/apt/sources.list')"
|
DESCRIPTION="$(Echo 'manage /etc/apt/sources.list')"
|
||||||
|
@ -42,33 +42,33 @@ case "${1}" in
|
||||||
Create_lockfile .lock
|
Create_lockfile .lock
|
||||||
|
|
||||||
# Configure custom sources.list
|
# Configure custom sources.list
|
||||||
echo "deb ${LH_MIRROR_CHROOT} ${LH_DISTRIBUTION} ${LH_CATEGORIES}" > chroot/etc/apt/sources.list
|
echo "deb ${LH_MIRROR_CHROOT} ${LH_DISTRIBUTION} ${LH_ARCHIVE_AREAS}" > chroot/etc/apt/sources.list
|
||||||
|
|
||||||
if [ "${LH_SOURCE}" = "enabled" ]
|
if [ "${LH_SOURCE}" = "enabled" ]
|
||||||
then
|
then
|
||||||
echo "deb-src ${LH_MIRROR_CHROOT} ${LH_DISTRIBUTION} ${LH_CATEGORIES}" >> chroot/etc/apt/sources.list
|
echo "deb-src ${LH_MIRROR_CHROOT} ${LH_DISTRIBUTION} ${LH_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${LH_SECURITY}" = "enabled" ]
|
if [ "${LH_SECURITY}" = "enabled" ]
|
||||||
then
|
then
|
||||||
case "${LH_MODE}" in
|
case "${LH_MODE}" in
|
||||||
ubuntu)
|
ubuntu)
|
||||||
echo "deb ${LH_MIRROR_CHROOT_SECURITY} ${LH_DISTRIBUTION}-security ${LH_CATEGORIES}" >> chroot/etc/apt/sources.list
|
echo "deb ${LH_MIRROR_CHROOT_SECURITY} ${LH_DISTRIBUTION}-security ${LH_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
|
||||||
|
|
||||||
if [ "${LH_SOURCE}" = "enabled" ]
|
if [ "${LH_SOURCE}" = "enabled" ]
|
||||||
then
|
then
|
||||||
echo "deb-src ${LH_MIRROR_CHROOT_SECURITY} ${LH_DISTRIBUTION}-security ${LH_CATEGORIES}" >> chroot/etc/apt/sources.list
|
echo "deb-src ${LH_MIRROR_CHROOT_SECURITY} ${LH_DISTRIBUTION}-security ${LH_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
if [ "${LH_DISTRIBUTION}" != "sid" ] && [ "${LH_DISTRIBUTION}" != "unstable" ]
|
if [ "${LH_DISTRIBUTION}" != "sid" ] && [ "${LH_DISTRIBUTION}" != "unstable" ]
|
||||||
then
|
then
|
||||||
echo "deb ${LH_MIRROR_CHROOT_SECURITY} ${LH_DISTRIBUTION}/updates ${LH_CATEGORIES}" >> chroot/etc/apt/sources.list
|
echo "deb ${LH_MIRROR_CHROOT_SECURITY} ${LH_DISTRIBUTION}/updates ${LH_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
|
||||||
|
|
||||||
if [ "${LH_SOURCE}" = "enabled" ]
|
if [ "${LH_SOURCE}" = "enabled" ]
|
||||||
then
|
then
|
||||||
echo "deb-src ${LH_MIRROR_CHROOT_SECURITY} ${LH_DISTRIBUTION}/updates ${LH_CATEGORIES}" >> chroot/etc/apt/sources.list
|
echo "deb-src ${LH_MIRROR_CHROOT_SECURITY} ${LH_DISTRIBUTION}/updates ${LH_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
@ -365,33 +365,33 @@ case "${1}" in
|
||||||
rm -rf chroot/var/lib/apt/lists
|
rm -rf chroot/var/lib/apt/lists
|
||||||
mkdir -p chroot/var/lib/apt/lists/partial
|
mkdir -p chroot/var/lib/apt/lists/partial
|
||||||
|
|
||||||
echo "deb ${LH_MIRROR_BINARY} ${LH_DISTRIBUTION} ${LH_CATEGORIES}" > chroot/etc/apt/sources.list
|
echo "deb ${LH_MIRROR_BINARY} ${LH_DISTRIBUTION} ${LH_ARCHIVE_AREAS}" > chroot/etc/apt/sources.list
|
||||||
|
|
||||||
if [ "${LH_SOURCE}" = "enabled" ]
|
if [ "${LH_SOURCE}" = "enabled" ]
|
||||||
then
|
then
|
||||||
echo "deb-src ${LH_MIRROR_BINARY} ${LH_DISTRIBUTION} ${LH_CATEGORIES}" >> chroot/etc/apt/sources.list
|
echo "deb-src ${LH_MIRROR_BINARY} ${LH_DISTRIBUTION} ${LH_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${LH_SECURITY}" = "enabled" ]
|
if [ "${LH_SECURITY}" = "enabled" ]
|
||||||
then
|
then
|
||||||
case "${LH_MODE}" in
|
case "${LH_MODE}" in
|
||||||
ubuntu)
|
ubuntu)
|
||||||
echo "deb ${LH_MIRROR_BINARY_SECURITY} ${LH_DISTRIBUTION}-security ${LH_CATEGORIES}" >> chroot/etc/apt/sources.list
|
echo "deb ${LH_MIRROR_BINARY_SECURITY} ${LH_DISTRIBUTION}-security ${LH_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
|
||||||
|
|
||||||
if [ "${LH_SOURCE}" = "enabled" ]
|
if [ "${LH_SOURCE}" = "enabled" ]
|
||||||
then
|
then
|
||||||
echo "deb-src ${LH_MIRROR_BINARY_SECURITY} ${LH_DISTRIBUTION}-security ${LH_CATEGORIES}" >> chroot/etc/apt/sources.list
|
echo "deb-src ${LH_MIRROR_BINARY_SECURITY} ${LH_DISTRIBUTION}-security ${LH_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
*)
|
*)
|
||||||
if [ "${LH_DISTRIBUTION}" != "sid" ] && [ "${LH_DISTRIBUTION}" != "unstable" ]
|
if [ "${LH_DISTRIBUTION}" != "sid" ] && [ "${LH_DISTRIBUTION}" != "unstable" ]
|
||||||
then
|
then
|
||||||
echo "deb ${LH_MIRROR_BINARY_SECURITY} ${LH_DISTRIBUTION}/updates ${LH_CATEGORIES}" >> chroot/etc/apt/sources.list
|
echo "deb ${LH_MIRROR_BINARY_SECURITY} ${LH_DISTRIBUTION}/updates ${LH_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
|
||||||
|
|
||||||
if [ "${LH_SOURCE}" = "enabled" ]
|
if [ "${LH_SOURCE}" = "enabled" ]
|
||||||
then
|
then
|
||||||
echo "deb-src ${LH_MIRROR_BINARY_SECURITY} ${LH_DISTRIBUTION}/updates ${LH_CATEGORIES}" >> chroot/etc/apt/sources.list
|
echo "deb-src ${LH_MIRROR_BINARY_SECURITY} ${LH_DISTRIBUTION}/updates ${LH_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'convert symlinks')"
|
DESCRIPTION="$(Echo 'convert symlinks')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'mount /sys')"
|
DESCRIPTION="$(Echo 'mount /sys')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'manage /usr/sbin/policy-rc.d')"
|
DESCRIPTION="$(Echo 'manage /usr/sbin/policy-rc.d')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'configure sysvinit')"
|
DESCRIPTION="$(Echo 'configure sysvinit')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'install tasks into chroot')"
|
DESCRIPTION="$(Echo 'install tasks into chroot')"
|
||||||
|
|
|
@ -21,7 +21,7 @@ then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'clean up system build directories')"
|
DESCRIPTION="$(Echo 'clean up system build directories')"
|
||||||
|
|
|
@ -21,7 +21,7 @@ then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
SYSTEM_LH_CONFFILE="/etc/default/live-helper"
|
SYSTEM_LH_CONFFILE="/etc/default/live-helper"
|
||||||
|
@ -109,7 +109,7 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\
|
||||||
\t [--quiet]\n\
|
\t [--quiet]\n\
|
||||||
\t [--root-command sudo]\n\
|
\t [--root-command sudo]\n\
|
||||||
\t [--use-fakeroot enabled|disabled]\n\
|
\t [--use-fakeroot enabled|disabled]\n\
|
||||||
\t [--categories CATEGORY|\"CATEGORIES\"]\n\
|
\t [--archive-areas ARCHIVE_AREA|\"ARCHIVE_AREAS\"]\n\
|
||||||
\t [--security enabled|disabled]\n\
|
\t [--security enabled|disabled]\n\
|
||||||
\t [--source enabled|disabled]\n\
|
\t [--source enabled|disabled]\n\
|
||||||
\t [-s|--source-images iso|net|tar|usb-hdd]\n\
|
\t [-s|--source-images iso|net|tar|usb-hdd]\n\
|
||||||
|
@ -136,7 +136,7 @@ Local_arguments ()
|
||||||
initramfs:,fdisk:,losetup:,mode:,root-command:,use-fakeroot:,tasksel:,includes:,
|
initramfs:,fdisk:,losetup:,mode:,root-command:,use-fakeroot:,tasksel:,includes:,
|
||||||
templates:,architecture:,bootstrap-config:,bootstrap-flavour:,bootstrap-keyring:,clean,
|
templates:,architecture:,bootstrap-config:,bootstrap-flavour:,bootstrap-keyring:,clean,
|
||||||
distribution:,mirror-bootstrap:,mirror-chroot:,mirror-chroot-security:,mirror-binary:,
|
distribution:,mirror-bootstrap:,mirror-chroot:,mirror-chroot-security:,mirror-binary:,
|
||||||
mirror-binary-security:,categories:,chroot-filesystem:,union-filesystem:,exposed-root:,virtual-root-size:,
|
mirror-binary-security:,archive-areas:,chroot-filesystem:,union-filesystem:,exposed-root:,virtual-root-size:,
|
||||||
gzip-options:,hooks:,interactive:,keyring-packages:,language:,linux-flavours:,linux-packages:,
|
gzip-options:,hooks:,interactive:,keyring-packages:,language:,linux-flavours:,linux-packages:,
|
||||||
packages:,packages-lists:,tasks:,security:,symlinks:,sysvinit:,binary-filesystem:,binary-images:,
|
packages:,packages-lists:,tasks:,security:,symlinks:,sysvinit:,binary-filesystem:,binary-images:,
|
||||||
binary-indices:,bootappend-install:,bootappend-live:,bootloader:,checksums:,chroot-build:,
|
binary-indices:,bootappend-install:,bootappend-live:,bootloader:,checksums:,chroot-build:,
|
||||||
|
@ -409,8 +409,8 @@ Local_arguments ()
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
|
|
||||||
--categories)
|
--archive-areas)
|
||||||
LH_CATEGORIES="${2}"
|
LH_ARCHIVE_AREAS="${2}"
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
@ -977,9 +977,9 @@ LH_MIRROR_BINARY="${LH_MIRROR_BINARY}"
|
||||||
# (Default: ${LH_MIRROR_BINARY_SECURITY})
|
# (Default: ${LH_MIRROR_BINARY_SECURITY})
|
||||||
LH_MIRROR_BINARY_SECURITY="${LH_MIRROR_BINARY_SECURITY}"
|
LH_MIRROR_BINARY_SECURITY="${LH_MIRROR_BINARY_SECURITY}"
|
||||||
|
|
||||||
# \$LH_CATEGORIES: select categories to use
|
# \$LH_ARCHIVE_AREAS: select archive areas to use
|
||||||
# (Default: ${LH_CATEGORIES})
|
# (Default: ${LH_ARCHIVE_AREAS})
|
||||||
LH_CATEGORIES="${LH_CATEGORIES}"
|
LH_ARCHIVE_AREAS="${LH_ARCHIVE_AREAS}"
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# Creating lh_chroot_* configuration
|
# Creating lh_chroot_* configuration
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'build source images')"
|
DESCRIPTION="$(Echo 'build source images')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'debian sources')"
|
DESCRIPTION="$(Echo 'debian sources')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'copy debian-live config into source')"
|
DESCRIPTION="$(Echo 'copy debian-live config into source')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'install disk information into source')"
|
DESCRIPTION="$(Echo 'install disk information into source')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'build iso source image')"
|
DESCRIPTION="$(Echo 'build iso source image')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'create source md5sums')"
|
DESCRIPTION="$(Echo 'create source md5sums')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'build source net image')"
|
DESCRIPTION="$(Echo 'build source net image')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'build source tarball')"
|
DESCRIPTION="$(Echo 'build source tarball')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'build source image')"
|
DESCRIPTION="$(Echo 'build source image')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'build source image')"
|
DESCRIPTION="$(Echo 'build source image')"
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
# Setting static variables
|
# Setting static variables
|
||||||
DESCRIPTION="$(Echo 'ensure that a system is built as root')"
|
DESCRIPTION="$(Echo 'ensure that a system is built as root')"
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Including common functions
|
# Including common functions
|
||||||
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
|
. "${LH_BASE:-/usr/share/live-helper}"/live-helper.sh
|
||||||
|
|
||||||
if [ -x "$(which man 2>/dev/null)" ]
|
if [ -x "$(which man 2>/dev/null)" ]
|
||||||
then
|
then
|
||||||
|
|
|
@ -164,7 +164,7 @@ lh_config \- create configuration for live\-helper
|
||||||
.br
|
.br
|
||||||
[\fB\-\-use-fakeroot\fR enabled|disabled]
|
[\fB\-\-use-fakeroot\fR enabled|disabled]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-categories\fR \fICATEGORY\fR|\fI"CATEGORIES"\fR]
|
[\fB\-\-archive\-areas\fR \fIARCHIVE_AREA\fR|\fI"ARCHIVE_AREAS"\fR]
|
||||||
.br
|
.br
|
||||||
[\fB\-\-security\fR enabled|disabled]
|
[\fB\-\-security\fR enabled|disabled]
|
||||||
.br
|
.br
|
||||||
|
@ -375,8 +375,8 @@ defines one or more packages to be installed in the live system. This is a quick
|
||||||
controls if live-helper should use sudo internally to build the live image. Note that this is not well tested and that you should, when relying on sudo, call the individual live\-helper command with sudo itself.
|
controls if live-helper should use sudo internally to build the live image. Note that this is not well tested and that you should, when relying on sudo, call the individual live\-helper command with sudo itself.
|
||||||
.IP "\fB\-\-use-fakeroot\fR enabled|disabled" 4
|
.IP "\fB\-\-use-fakeroot\fR enabled|disabled" 4
|
||||||
controls if live-helper should utilize fakeroot and fakechroot to try and avoid requiring root privillages where possible. By default, this option is disabled.
|
controls if live-helper should utilize fakeroot and fakechroot to try and avoid requiring root privillages where possible. By default, this option is disabled.
|
||||||
.IP "\fB\-\-categories\fR \fICATEGORY\fR|\fI""CATEGORIES""\fR" 4
|
.IP "\fB\-\-archive\-areas\fR \fIARCHIVE_AREA\fR|\fI""ARCHIVE_AREAS""\fR" 4
|
||||||
defines which package categories of a debian packages archive should be used for configured debian package mirrors. By default, this is set to main. Remember to check the licenses of each packages with respect to their redistributability in your juristiction when enabling contrib or non-free with this mechanism.
|
defines which package archive areas of a debian packages archive should be used for configured debian package mirrors. By default, this is set to main. Remember to check the licenses of each packages with respect to their redistributability in your juristiction when enabling contrib or non-free with this mechanism.
|
||||||
.IP "\fB\-\-security\fR enabled|disabled" 4
|
.IP "\fB\-\-security\fR enabled|disabled" 4
|
||||||
defines if the security repositories specified in the security mirror options should be used or not.
|
defines if the security repositories specified in the security mirror options should be used or not.
|
||||||
.IP "\fB\-\-source\fR enabled|disabled" 4
|
.IP "\fB\-\-source\fR enabled|disabled" 4
|
||||||
|
|
|
@ -565,8 +565,8 @@ msgstr " [B<--use-fakeroot> enabled|disabled]"
|
||||||
|
|
||||||
# type: Plain text
|
# type: Plain text
|
||||||
#: lh_config.en.1:164
|
#: lh_config.en.1:164
|
||||||
msgid " [B<--categories> I<CATEGORY>|I<\"CATEGORIES\">]"
|
msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
|
||||||
msgstr " [B<--categories> I<KATEGORIE>|I<\"KATEGORIEN\">]"
|
msgstr " [B<--archive-areas> I<KATEGORIE>|I<\"KATEGORIEN\">]"
|
||||||
|
|
||||||
# type: Plain text
|
# type: Plain text
|
||||||
#: lh_config.en.1:166
|
#: lh_config.en.1:166
|
||||||
|
@ -2136,13 +2136,13 @@ msgstr "B<--use-fakeroot> enabled|disabled"
|
||||||
# type: IP
|
# type: IP
|
||||||
#: lh_config.en.1:370
|
#: lh_config.en.1:370
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--categories> I<CATEGORY>|I<\"CATEGORIES\">"
|
msgid "B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">"
|
||||||
msgstr "B<--categories> I<KATEGORIE>|I<\"KATEGORIEN\">"
|
msgstr "B<--archive-areas> I<KATEGORIE>|I<\"KATEGORIEN\">"
|
||||||
|
|
||||||
# type: Plain text
|
# type: Plain text
|
||||||
#: lh_config.en.1:372
|
#: lh_config.en.1:372
|
||||||
msgid ""
|
msgid ""
|
||||||
"defines which package categories of a debian packages archive should be used "
|
"defines which package archive areas of a debian packages archive should be used "
|
||||||
"for configured debian package mirrors. By default, this is set to main. "
|
"for configured debian package mirrors. By default, this is set to main. "
|
||||||
"Remember to check the licenses of each packages with respect to their "
|
"Remember to check the licenses of each packages with respect to their "
|
||||||
"redistributability in your juristiction when enabling contrib or non-free "
|
"redistributability in your juristiction when enabling contrib or non-free "
|
||||||
|
|
|
@ -557,7 +557,7 @@ msgstr ""
|
||||||
|
|
||||||
# type: Plain text
|
# type: Plain text
|
||||||
#: lh_config.en.1:164
|
#: lh_config.en.1:164
|
||||||
msgid " [B<--categories> I<CATEGORY>|I<\"CATEGORIES\">]"
|
msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# type: Plain text
|
# type: Plain text
|
||||||
|
@ -1797,13 +1797,13 @@ msgstr ""
|
||||||
# type: IP
|
# type: IP
|
||||||
#: lh_config.en.1:370
|
#: lh_config.en.1:370
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--categories> I<CATEGORY>|I<\"CATEGORIES\">"
|
msgid "B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# type: Plain text
|
# type: Plain text
|
||||||
#: lh_config.en.1:372
|
#: lh_config.en.1:372
|
||||||
msgid ""
|
msgid ""
|
||||||
"defines which package categories of a debian packages archive should be used "
|
"defines which package archive areas of a debian packages archive should be used "
|
||||||
"for configured debian package mirrors. By default, this is set to main. "
|
"for configured debian package mirrors. By default, this is set to main. "
|
||||||
"Remember to check the licenses of each packages with respect to their "
|
"Remember to check the licenses of each packages with respect to their "
|
||||||
"redistributability in your juristiction when enabling contrib or non-free "
|
"redistributability in your juristiction when enabling contrib or non-free "
|
||||||
|
|
|
@ -550,7 +550,7 @@ msgstr ""
|
||||||
|
|
||||||
# type: Plain text
|
# type: Plain text
|
||||||
#: lh_config.en.1:164
|
#: lh_config.en.1:164
|
||||||
msgid " [B<--categories> I<CATEGORY>|I<\"CATEGORIES\">]"
|
msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# type: Plain text
|
# type: Plain text
|
||||||
|
@ -1789,13 +1789,13 @@ msgstr ""
|
||||||
# type: IP
|
# type: IP
|
||||||
#: lh_config.en.1:370
|
#: lh_config.en.1:370
|
||||||
#, no-wrap
|
#, no-wrap
|
||||||
msgid "B<--categories> I<CATEGORY>|I<\"CATEGORIES\">"
|
msgid "B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# type: Plain text
|
# type: Plain text
|
||||||
#: lh_config.en.1:372
|
#: lh_config.en.1:372
|
||||||
msgid ""
|
msgid ""
|
||||||
"defines which package categories of a debian packages archive should be used "
|
"defines which package archive areas of a debian packages archive should be used "
|
||||||
"for configured debian package mirrors. By default, this is set to main. "
|
"for configured debian package mirrors. By default, this is set to main. "
|
||||||
"Remember to check the licenses of each packages with respect to their "
|
"Remember to check the licenses of each packages with respect to their "
|
||||||
"redistributability in your juristiction when enabling contrib or non-free "
|
"redistributability in your juristiction when enabling contrib or non-free "
|
||||||
|
|
Loading…
Reference in New Issue