Marcus Meissner
faf3134176
I want to maintain sedutil in Factory and would like to use Base:System as the devel/feeder project. OBS-URL: https://build.opensuse.org/request/show/636836 OBS-URL: https://build.opensuse.org/package/show/Base:System/sedutil?expand=0&rev=1
20 lines
281 B
Bash
20 lines
281 B
Bash
#!/bin/bash
|
|
|
|
# called by dracut
|
|
check() {
|
|
require_binaries linuxpba sedutil-cli || return 1
|
|
return 255
|
|
}
|
|
|
|
# called by dracut
|
|
depends() {
|
|
return 0
|
|
}
|
|
|
|
# called by dracut
|
|
install() {
|
|
inst_hook cmdline 00 "$moddir/linuxpba.sh"
|
|
inst_multiple linuxpba sedutil-cli
|
|
}
|
|
|