summaryrefslogtreecommitdiff
path: root/sbin/update-ca-certificates
diff options
context:
space:
mode:
authorMichael Shuler <michael@pbandjelly.org>2014-10-06 16:49:11 -0500
committerMichael Shuler <michael@pbandjelly.org>2014-10-06 16:49:11 -0500
commit7b7e134df5d35317e9cdbc04118c59645456c373 (patch)
tree1735663e0dd747dc40ba850f67858ae94eced420 /sbin/update-ca-certificates
parent07a789e709a59be96ac8958ae8b5fa6688c62a11 (diff)
downloadca-certificates-7b7e134df5d35317e9cdbc04118c59645456c373.tar.gz
Tidy indentation whitespace. #742663
Diffstat (limited to 'sbin/update-ca-certificates')
-rwxr-xr-xsbin/update-ca-certificates22
1 files changed, 11 insertions, 11 deletions
diff --git a/sbin/update-ca-certificates b/sbin/update-ca-certificates
index b8f16b4..fcd709c 100755
--- a/sbin/update-ca-certificates
+++ b/sbin/update-ca-certificates
@@ -26,13 +26,13 @@ fresh=0
while [ $# -gt 0 ];
do
case $1 in
- --verbose|-v)
- verbose=1;;
- --fresh|-f)
- fresh=1;;
- --help|-h|*)
- echo "$0: [--verbose] [--fresh]"
- exit;;
+ --verbose|-v)
+ verbose=1;;
+ --fresh|-f)
+ fresh=1;;
+ --help|-h|*)
+ echo "$0: [--verbose] [--fresh]"
+ exit;;
esac
shift
done
@@ -88,13 +88,13 @@ if [ "$fresh" = 1 ]; then
echo -n "Clearing symlinks in $ETCCERTSDIR..."
find . -type l -print | while read symlink
do
- case $(readlink $symlink) in
- $CERTSDIR*) rm -f $symlink;;
- esac
+ case $(readlink $symlink) in
+ $CERTSDIR*) rm -f $symlink;;
+ esac
done
find . -type l -print | while read symlink
do
- test -f $symlink || rm -f $symlink
+ test -f $symlink || rm -f $symlink
done
echo "done."
fi