diff options
author | Matthew Booth <mbooth@redhat.com> | 2010-05-27 15:47:51 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2010-05-27 16:30:30 +0100 |
commit | 90b3539e28c1c5ab7e6a21c0d160010444773734 (patch) | |
tree | a23a5dbc9e106135fd0ca4ea2daf7f8ac081e2f6 | |
parent | 245ed4b8eb076a8c4cc5787f49d21c4f68630f9f (diff) | |
download | libguestfs-90b3539e28c1c5ab7e6a21c0d160010444773734.tar.gz libguestfs-90b3539e28c1c5ab7e6a21c0d160010444773734.tar.xz libguestfs-90b3539e28c1c5ab7e6a21c0d160010444773734.zip |
Make the supermin appliance include local augeas lenses
-rw-r--r-- | appliance/Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/appliance/Makefile.am b/appliance/Makefile.am index e1c9ef67..2df8a2b9 100644 --- a/appliance/Makefile.am +++ b/appliance/Makefile.am @@ -90,6 +90,9 @@ stamp-supermin: $(INITRAMFSIMG) mkdir -p supermin.d rm -f $@ supermin.d/base.img supermin.d/hostfiles febootstrap-to-supermin $(top_builddir)/initramfs supermin.d/base.img supermin.d/hostfiles + if grep -q /usr/share/augeas/lenses supermin.d/hostfiles; then \ + echo "./usr/share/augeas/lenses/*.aug" >> supermin.d/hostfiles; \ + fi touch $@ supermin.d/daemon.img: $(INITRAMFSIMG) |