summarylogtreecommitdiffstats
path: root/lsi-msm.install
diff options
context:
space:
mode:
Diffstat (limited to 'lsi-msm.install')
-rw-r--r--lsi-msm.install12
1 files changed, 6 insertions, 6 deletions
diff --git a/lsi-msm.install b/lsi-msm.install
index 4f118b69895b..4069575673ae 100644
--- a/lsi-msm.install
+++ b/lsi-msm.install
@@ -79,22 +79,22 @@ post_remove() {
if [ -d $path ]; then
if $first; then
first=false
- printf "${yellow}==>${all_off} ${bold}Leftover Paths:${all_off}\n"
+ printf "${green}==>${all_off} ${bold}Leftover Paths:${all_off}\n"
fi
- echo " $paths"
+ printf "${blue} -> ${all_off} ${bold}$path${all_off}\n"
fi
done
files=(/etc/SlAsyncAddpCfg*.cfg)
first=true
- for files in ${files[@]}; do
- if [ -f $files ]; then
+ for file in ${files[@]}; do
+ if [ -d $file ]; then
if $first; then
first=false
- printf "${yellow}==>${all_off} ${bold}Leftover Files:${all_off}\n"
+ printf "${green}==>${all_off} ${bold}Leftover files:${all_off}\n"
fi
- echo " $files"
+ printf "${blue} -> ${all_off} ${bold}$files${all_off}\n"
fi
done
}