mirror of
https://github.com/nchevsky/systemrescue-zfs.git
synced 2026-04-21 06:03:41 +00:00
14 lines
306 B
Bash
14 lines
306 B
Bash
#!/bin/bash
|
|
|
|
build() {
|
|
add_file "/usr/bin/sysrescue-configuration.lua"
|
|
add_binary "/usr/bin/lua"
|
|
add_full_dir "/usr/lib/lua"
|
|
add_full_dir "/usr/share/lua"
|
|
}
|
|
|
|
help() {
|
|
cat <<HELPEOF
|
|
This hook allows the configuration processing script to be installed with all its dependencies
|
|
HELPEOF
|
|
}
|