On 11/1/19 1:05 AM, Bhaskar Chowdhury wrote: > This patch allow you to remove old kernels and associated modules > directory from the system.You can do it at once with the -r flag > and interactively with the -i flag. > > Signed-off-by: Bhaskar Chowdhury <unixbhaskar@xxxxxxxxx> Hi Bhaskar, I think that you are getting a lot closer with this patch, but there are still a few issues. And of course, it's not up to me whether the patch is applied. See below. > --- > scripts/prune-kernel | 63 ++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 63 insertions(+) > > diff --git a/scripts/prune-kernel b/scripts/prune-kernel > index a25aa2160d47..373a845792e6 100755 > --- a/scripts/prune-kernel > +++ b/scripts/prune-kernel > @@ -1,3 +1,66 @@ > #!/bin/bash > # SPDX-License-Identifier: GPL-2.0 > +#This script will remove old kernels and modules directory related to it. > +# "-h" or "--help" show how to use this script or show without parameter. > +#"-r" or "--remove" show how to silently remove old kernel and modules dir. > +#"-i" or "--interactive" show how to remove interactively. > > +flag=$1 > +kernel_version=$2 > +modules_version=$3 > +boot_dir=/boot > +modules_dir=/lib/modules > + > +remove_old_kernel() { > + cd $boot_dir > + rm -If vmlinuz-$kernel_version System.map-$kernel_version config-$kernel_version > + return 0 > +} > + > +remove_old_modules_dir() { > + cd $modules_dir > + rm -rf $modules_version > + return 0 > +} > + > +usage() { > + printf "Usage: $(basename $0) [-ri] \n" > + printf "\n -r or --remove kernel_version modules_version \n" > + printf "\n -i or --interactive do as interactive way \n" In those 3 printf's, drop the ending space before the \n. > + return 0 > +} > + > + case "$flag" in > + -i | --interactive) > + printf "\nEnter kernel version to remove or blank/empty to exit:%s" Drop the %s - it's not needed. > + read kernel_version > + if [[ $kernel_version != "" ]]; then > + remove_old_kernel > + printf "Please give the full modules directory name to remove:%s" Drop the %s here also. > + read modules_version > + if [[ $modules_version != "" ]]; then > + remove_old_modules_dir > + printf "\n\nRemoved kernel version:$kernel_version and associated modules directory:$modules_version ...Done \n" > + else > + exit 1 > + fi > + fi There is still a small problem here: if I enter a kernel_version and then remove_old_kernel() is called, and then I enter "" for modules_version, the script exits without that printf line. I guess that it is possible that someone only wants to remove the kernel_version files and not the modules. Perhaps the thing to do is just make the prompts and calls and printf totally separate and repeated for kernel_version and modules_version. Do you see what I mean? or do you have other ideas about this? > + ;; > + -h | --help) > + usage > + exit 1 > + ;; > + -r | --remove) > + if [[ $# -ne 3 ]]; then > + printf "You need to provide kernel version and modules directory name \n" Drop the space before the \n. > + exit 1 > + else > + remove_old_kernel > + remove_old_modules_dir > + fi > + ;; > + *) > + usage > + exit 1 > + ;; > + esac > -- Same comment as before: after applying this patch, the "new" scripts/prune-kernel file still contains the previous script's for-loop at the end of the "new" script. -- ~Randy