diff options
| author | seth <[email protected]> | 2024-01-19 22:17:31 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2024-01-20 05:56:19 -0500 |
| commit | 290a84e86b2f2c3cb1403f94eff416e74d536abd (patch) | |
| tree | ea3a3138e6949905c2a4e60e8e5905d3f6412867 /akmods/install.sh | |
initial commit
Diffstat (limited to 'akmods/install.sh')
| -rwxr-xr-x | akmods/install.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/akmods/install.sh b/akmods/install.sh new file mode 100755 index 0000000..d8d1a87 --- /dev/null +++ b/akmods/install.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +set -euxo pipefail + +cp /tmp/akmods-cert/rpmbuild/RPMS/noarch/getchoo-akmods-cert*.rpm /var/cache/rpms/akmods-cert/ +find /var/cache/akmods -type f -name \*.rpm | while read -r rpm; do + cp "$rpm" /var/cache/rpms/kmods/ +done |
