From 07e6d55dc139906b54b967557c84a7872d01ae19 Mon Sep 17 00:00:00 2001 From: Dermot Bradley Date: Sun, 5 Oct 2025 17:01:52 +0100 Subject: [PATCH] fix: install doc files that were previously installed pre-Meson The Meson-based installation does not install these text files whereas the pre-Meson installation did, so reinstate them. --- meson.build | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/meson.build b/meson.build index 773c136e26a..d47e71df795 100644 --- a/meson.build +++ b/meson.build @@ -229,6 +229,16 @@ install_data( install_mode: 'rw-r--r--', install_tag: 'doc', ) +install_data( + [ + 'doc/status.txt', + 'doc/userdata.txt', + 'doc/var-lib-cloud.txt', + ], + install_dir: get_option('datadir') / 'doc' / 'cloud-init', + install_mode: 'rw-r--r--', + install_tag: 'doc', +) install_data( [ 'doc/examples/seed/README',