diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-08-14 01:39:48 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:39 +0100 |
commit | afc3dc8166fa48705de9e34bd3310ea63dd4593a (patch) | |
tree | c1677662484aa683a7bc37c9bcf7549a37d7b2dd /helpers | |
parent | 3732c2c4bbccd313145dbeb71c9d34965ba133e3 (diff) | |
download | vyos-live-build-afc3dc8166fa48705de9e34bd3310ea63dd4593a.tar.gz vyos-live-build-afc3dc8166fa48705de9e34bd3310ea63dd4593a.zip |
Tidy "install" / "install-binary" handling in lh_chroot_apt.
Diffstat (limited to 'helpers')
-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 |