| # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| # |
| # Makefile of /dracut/add-luks-keys |
| # Description: Create and add a luks key to all luks devices to allow booting of a system without entering a passphrase |
| # Author: Jan Stodola <jstodola@redhat.com> |
| # |
| # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| # |
| # Copyright (c) 2016 Red Hat, Inc. All rights reserved. |
| # Red Hat Internal |
| # |
| # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| |
| export TEST=/dracut/add-luks-keys |
| export TESTVERSION=1.0 |
| export DESCRIPTION="Create and add a luks key to all luks devices to allow booting of a system without entering a passphrase" |
| |
| BUILT_FILES= |
| |
| FILES=$(METADATA) runtest.sh Makefile PURPOSE |
| |
| .PHONY: all install download clean |
| |
| run: $(FILES) build |
| ./runtest.sh |
| |
| build: $(BUILT_FILES) |
| test -x runtest.sh || chmod a+x runtest.sh |
| |
| clean: |
| rm -f *~ $(BUILT_FILES) |
| |
| |
| include /usr/share/rhts/lib/rhts-make.include |
| |
| $(METADATA): Makefile |
| @echo "Owner: Jan Stodola <jstodola@redhat.com>" > $(METADATA) |
| @echo "Name: $(TEST)" >> $(METADATA) |
| @echo "TestVersion: $(TESTVERSION)" >> $(METADATA) |
| @echo "Path: $(TEST_DIR)" >> $(METADATA) |
| @echo "Description: $(DESCRIPTION)" >> $(METADATA) |
| @echo "Type: Install" >> $(METADATA) |
| @echo "TestTime: 10m" >> $(METADATA) |
| @echo "RunFor: dracut" >> $(METADATA) |
| @echo "Requires: dracut" >> $(METADATA) |
| @echo "Priority: Normal" >> $(METADATA) |
| @echo "License: Red Hat Internal" >> $(METADATA) |
| @echo "Confidential: no" >> $(METADATA) |
| @echo "Destructive: no" >> $(METADATA) |
| @echo "Releases: -RHEL4 -RHELClient5 -RHELServer5" >> $(METADATA) |
| |
| rhts-lint $(METADATA) |