summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorMichael Shuler <michael@pbandjelly.org>2011-09-17 17:26:32 -0500
committerMichael Shuler <michael@pbandjelly.org>2011-09-17 17:26:32 -0500
commitb45b3e496f22983ce5ddcb9ac8b44dbab23cfe48 (patch)
tree0ff58c093f5d725ad5b81693d78f3abca31d6659 /sbin
parent8828ce73c28f732b6e32dd07172d384efe2c0478 (diff)
downloadca-certificates-b45b3e496f22983ce5ddcb9ac8b44dbab23cfe48.tar.gz
Import Debian version 20090708debian/20090708
Diffstat (limited to 'sbin')
-rwxr-xr-xsbin/update-ca-certificates7
1 files changed, 4 insertions, 3 deletions
diff --git a/sbin/update-ca-certificates b/sbin/update-ca-certificates
index a34ef75..fc083d7 100755
--- a/sbin/update-ca-certificates
+++ b/sbin/update-ca-certificates
@@ -17,7 +17,8 @@
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02111-1301,
+# USA.
#
verbose=0
@@ -137,7 +138,7 @@ then
# only run if set of files has changed
if [ "$verbose" = 0 ]
then
- c_rehash . > /dev/null 2>&1
+ c_rehash . > /dev/null
else
c_rehash .
fi
@@ -149,7 +150,7 @@ HOOKSDIR=/etc/ca-certificates/update.d
echo -n "Running hooks in $HOOKSDIR...."
VERBOSE_ARG=
[ "$verbose" = 0 ] || VERBOSE_ARG=--verbose
-eval run-parts $VERB_ARG --test -- $HOOKSDIR | while read hook
+eval run-parts $VERBOSE_ARG --test -- $HOOKSDIR | while read hook
do
( cat $ADDED
cat $REMOVED ) | $hook || echo E: $hook exited with code $?.