index : devops | |
Archlinux32 devs' convenience-scripts | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2019-08-18 15:30:01 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-08-18 15:30:01 +0200 |
commit | 794c2f417b0671d6f16e8e47f4ac3d41db42be2c (patch) | |
tree | b0ae1feefedda7144abafca50a16413ab466d1f2 /check-linux-versions | |
parent | 6dfd2712428994166611d2ccb83c1f950a28374a (diff) |
-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 |