diff options
author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-01-15 01:34:01 +0000 |
---|---|---|
committer | Chris Lamb <chris@chris-lamb.co.uk> | 2008-01-15 01:34:01 +0000 |
commit | c6108d09b3f437c735c31bd7f57871ef269cc7c4 (patch) | |
tree | 5ec2812af5b3ef90b0a67d1ad4031e5b23f5a8c6 /hooks | |
parent | 4577edad2042c0c06c4e5518346dec5146237339 (diff) | |
download | vyos-live-build-c6108d09b3f437c735c31bd7f57871ef269cc7c4.tar.gz vyos-live-build-c6108d09b3f437c735c31bd7f57871ef269cc7c4.zip |
Don't prompt when autoremoving packages in minimal hooks.
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
Diffstat (limited to 'hooks')
-rwxr-xr-x | hooks/minimal | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hooks/minimal b/hooks/minimal index 7c36f7d67..25d80f2e2 100755 --- a/hooks/minimal +++ b/hooks/minimal @@ -18,7 +18,7 @@ do fi done -apt-get autoremove || true +apt-get autoremove --yes || true # Removing unused files find . -name *~ | xargs rm -f |