index : devops | |
Archlinux32 devs' convenience-scripts | gitolite user |
summaryrefslogtreecommitdiff |
-rwxr-xr-x | check-linux-versions | 12 |
diff --git a/check-linux-versions b/check-linux-versions index 7d3e6d3..38fcdcd 100755 --- a/check-linux-versions +++ b/check-linux-versions @@ -1,7 +1,7 @@ #!/bin/bash for a in i486 i686 pentium4; do - for r in core extra community testing community-testing; do + for r in core extra community testing community-testing staging community-staging; do for k in '' '-lts' '-pae' '-zen'; do kernels=$( find /mnt/archlinux32/${a}/${r} \ @@ -21,15 +21,7 @@ for a in i486 i686 pentium4; do | uniq -cf2 \ | grep -v '^\s*3\s' ) || continue - echo "$a/$r/linux$k" \ - | sed ' - s@/\(community-\)\?testing/@/\1staging/@ - t - s@/\(core\|extra\)/@/testing/@ - t - s@/community/@/community-testing/@ - t - ' + echo "$a/$r/linux$k" echo "$kernels" echo done |