add a few utility scripts for downloading sources

This commit is contained in:
Dusty Mabe 2019-01-05 17:08:57 -05:00
parent a917a6aa1a
commit d3515dd2dd
No known key found for this signature in database
GPG Key ID: 3302DBD73952E671
2 changed files with 6 additions and 0 deletions

3
download-ignition-dracut.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
set -xeuo pipefail
rpmspec -P ignition.spec | grep 'Source1:' | tr -s ' ' | cut -d ' ' -f 2 | xargs wget

3
download-ignition.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
set -xeuo pipefail
rpmspec -P ignition.spec | grep 'Source0:' | tr -s ' ' | cut -d ' ' -f 2 | xargs wget