diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-08-14 01:39:48 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2008-08-14 05:44:23 +0200 |
commit | c2356c4184c430817023373a68d58680af9d46d2 (patch) | |
tree | 6d74b96c9d2c566b5653a44b673e6950a825dd6a | |
parent | 252ee4f32c1ce488c4102652cbc94e4849a0c596 (diff) | |
download | vyos-live-build-c2356c4184c430817023373a68d58680af9d46d2.tar.gz vyos-live-build-c2356c4184c430817023373a68d58680af9d46d2.zip |
Tidy "install" / "install-binary" handling in lh_chroot_apt.
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
-rwxr-xr-x | helpers/lh_chroot_apt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helpers/lh_chroot_apt b/helpers/lh_chroot_apt index 62a0908aa..a7a12d803 100755 --- a/helpers/lh_chroot_apt +++ b/helpers/lh_chroot_apt @@ -20,7 +20,7 @@ done # Setting static variables DESCRIPTION="manage /etc/apt/apt.conf" HELP="" -USAGE="${PROGRAM} {install|remove} [--force]" +USAGE="${PROGRAM} {install|install-binary|remove} [--force]" Arguments "${@}" @@ -32,7 +32,7 @@ Set_defaults Require_stagefile .stage/bootstrap case "${1}" in - install*) + install|install-binary) Echo_message "Configuring file /etc/apt/apt.conf" # Checking stage file |