Added meson build file
This commit is contained in:
parent
c513e63fbd
commit
40f3f63510
2 changed files with 17 additions and 0 deletions
3
README.md
Normal file
3
README.md
Normal 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
14
meson.build
Normal 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)
|
Loading…
Reference in a new issue