17 lines
353 B
Bash
Executable File
17 lines
353 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
#
|
|
|
|
install() {
|
|
SRC="$1"
|
|
DST="$2"
|
|
cp "$SRC" "$DST"
|
|
chown root:root "$DST"
|
|
chmod 640 "$DST"
|
|
}
|
|
|
|
install initcpio-install /etc/initcpio/install/luksrku
|
|
install initcpio-hook /etc/initcpio/hooks/luksrku
|
|
install mkinitcpio-preset /etc/mkinitcpio.d/linux-lts-luksrku.preset
|
|
install mkinitcpio-conf /etc/mkinitcpio.d/mkinitcpio.luksrku.conf
|