From a5fc528ba061d95f507a001724fb82bd0c287245 Mon Sep 17 00:00:00 2001 From: Didier Raboud Date: Thu, 31 Jul 2014 07:51:56 +0000 Subject: Adapt bin/gen-DLA to let DLA's always read as DLA-####-# - Amend DLA subject to have the first dash - Patch bin/gen-DLA to zero-pad the DLAid to 4 digits git-svn-id: svn+ssh://svn.debian.org/svn/secure-testing@28008 e39458fd-73e7-0310-bf30-c45bca0a0e42 --- bin/gen-DLA | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/gen-DLA') diff --git a/bin/gen-DLA b/bin/gen-DLA index a2f57f09c9..1284847cc4 100755 --- a/bin/gen-DLA +++ b/bin/gen-DLA @@ -222,10 +222,10 @@ fi if [ -z "$DLAID" ]; then latest_dla="$(sed -nr '/DLA-[0-9]+-1/{s/^.+DLA-[0]*([0-9]+).*$/\1/;p;q}' data/DLA/list)" - dla=$(($latest_dla+1)) + dla=$(printf '%04d' $(($latest_dla+1))) c=0 while dla_exists "$dla-1"; do - dla=$(($dla+1)) + dla=$(printf '%04d' $(($dla+1))) c=$(($c+1)) if [ $c -eq 10 ]; then error "unable to find an unused DLA id after $c attempts" >&2 -- cgit v1.2.3