From 421ca4ea059800b35ef7fbf78cdfdd41f3c3a9b2 Mon Sep 17 00:00:00 2001 From: Steve Kamerman Date: Wed, 18 Oct 2017 02:02:27 -0400 Subject: [PATCH] Renamed install_clean --- README.md | 2 +- image/bin/{install_clean.sh => install_clean} | 0 image/utilities.sh | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename image/bin/{install_clean.sh => install_clean} (100%) diff --git a/README.md b/README.md index 691439c..7993e3c 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ You can configure the stock `ubuntu` image yourself from your Dockerfile, so why | cron | The cron daemon must be running for cron jobs to work. | | [runit](http://smarden.org/runit/) | Replaces Ubuntu's Upstart. Used for service supervision and management. Much easier to use than SysV init and supports restarting daemons when they crash. Much easier to use and more lightweight than Upstart. | | `setuser` | A tool for running a command as another user. Easier to use than `su`, has a smaller attack vector than `sudo`, and unlike `chpst` this tool sets `$HOME` correctly. Available as `/sbin/setuser`. | -| `install_clean.sh` | A tool for installing `apt` packages that automatically cleans up after itself. All arguments are passed to `apt-get -y install --no-install-recommends` and after installation the apt caches are cleared. To include recommended packages, add `--install-recommends`. | +| `install_clean` | A tool for installing `apt` packages that automatically cleans up after itself. All arguments are passed to `apt-get -y install --no-install-recommends` and after installation the apt caches are cleared. To include recommended packages, add `--install-recommends`. | Baseimage-docker is very lightweight: it only consumes 6 MB of memory. diff --git a/image/bin/install_clean.sh b/image/bin/install_clean similarity index 100% rename from image/bin/install_clean.sh rename to image/bin/install_clean diff --git a/image/utilities.sh b/image/utilities.sh index 8b452db..d1aa273 100755 --- a/image/utilities.sh +++ b/image/utilities.sh @@ -11,4 +11,4 @@ ln -s /usr/bin/vim.tiny /usr/bin/vim cp /bd_build/bin/setuser /sbin/setuser ## This tool allows installation of apt packages with automatic cache cleanup. -cp /bd_build/bin/install_clean.sh /sbin/install_clean.sh +cp /bd_build/bin/install_clean /sbin/install_clean