mirror of
https://github.com/Kicksecure/security-misc.git
synced 2025-01-13 17:29:26 -05:00
12 lines
276 B
Bash
Executable File
12 lines
276 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## Copyright (C) 2012 - 2018 ENCRYPTED SUPPORT LP <adrelanos@riseup.net>
|
|
## See the file COPYING for copying conditions.
|
|
|
|
set -x
|
|
set -e
|
|
set -o pipefail
|
|
|
|
wc -L "/var/lib/apt/lists/"*InRelease
|
|
wc -L "/var/lib/apt/lists/"*InRelease | awk '$1 > 1024 {print; exit 1}'
|