12436a7180
https://github.com/coreos/ignition-dracut/pull/151 While we're here, tweak the `download-*` scripts to use `curl` instead of `wget` since the former is installed by default but not the latter. Also adapt spec file for not packaging any GRUB dropins anymore.
4 lines
121 B
Bash
Executable File
4 lines
121 B
Bash
Executable File
#!/bin/bash
|
|
set -xeuo pipefail
|
|
rpmspec -P ignition.spec | grep 'Source1:' | tr -s ' ' | cut -d ' ' -f 2 | xargs curl -LO
|