mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:34:36 +08:00
26 lines
721 B
Plaintext
26 lines
721 B
Plaintext
build ()
|
|
{
|
|
grep "swap_device=" /etc/openswap.conf > "$BUILDROOT/openswap.conf"
|
|
grep "crypt_swap_name=" /etc/openswap.conf >> "$BUILDROOT/openswap.conf"
|
|
grep "keyfile_device=" /etc/openswap.conf >> "$BUILDROOT/openswap.conf"
|
|
grep "keyfile_filename=" /etc/openswap.conf >> "$BUILDROOT/openswap.conf"
|
|
grep "miscellaneous=" /etc/openswap.conf >> "$BUILDROOT/openswap.conf"
|
|
|
|
source "$BUILDROOT/openswap.conf"
|
|
|
|
if [ -z "$swap_device" ]; then
|
|
warning "swap_device variable is not set"
|
|
fi
|
|
|
|
if [ -z "$crypt_swap_name" ]; then
|
|
warning "crypt_swap_name variable is not set"
|
|
fi
|
|
|
|
add_runscript
|
|
}
|
|
help ()
|
|
{
|
|
cat<<HELPEOF
|
|
This hook opens a swap at boot time
|
|
HELPEOF
|
|
} |