diff --git a/README.md b/README.md new file mode 100644 index 0000000..94a386b --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Zlevis-Dracut + +A dracut module to allow zlevis to unlock an encrypted ZFS pool during boot up time. diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..f53fd90 --- /dev/null +++ b/meson.build @@ -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)