Added meson build file

This commit is contained in:
nils 2025-01-05 03:42:08 +01:00
parent c513e63fbd
commit 40f3f63510
2 changed files with 17 additions and 0 deletions

3
README.md Normal file
View file

@ -0,0 +1,3 @@
# Zlevis-Dracut
A dracut module to allow zlevis to unlock an encrypted ZFS pool during boot up time.

14
meson.build Normal file
View file

@ -0,0 +1,14 @@
# Project definition
project('zlevis-dracut', version: '0.1')
# Files which need to be moved
src_files = [
'module-setup.sh',
'zlevis.sh'
]
# Move them to an appropriate dracut module dir
modules_dir = '/usr/lib/dracut/modules.d/85zlevis/'
# Install the files
install_data(src_files, install_dir: modules_dir)