From fd8f894830080d466e97b334f8c462dbc8e8baf3 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Thu, 30 Jul 2009 15:21:23 +0100 Subject: [PATCH] Don't just remove files, wrap the 'rm' command in febootstrap-run wrapper. --- febootstrap.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/febootstrap.sh b/febootstrap.sh index 67687e5..6b46ed4 100755 --- a/febootstrap.sh +++ b/febootstrap.sh @@ -239,8 +239,7 @@ else fi # Clean up the yum repository. -# XXX We shouldn't just rm files. if [ "$clean" = "yes" ]; then - rm -rf "$target"/var/cache/yum/febootstrap - rm -rf "$target"/var/cache/yum/febootstrap-updates + febootstrap-run "$target" -- rm -rf /var/cache/yum/febootstrap + febootstrap-run "$target" -- rm -rf /var/cache/yum/febootstrap-updates fi -- 1.8.3.1