From: Andrea Bolognani Date: Tue, 26 Sep 2023 17:58:00 +0000 (+0200) Subject: systemd: Introduce service_in/service_out variables X-Git-Tag: v9.9.0-rc1~144 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e37fe27287a6eb1d7bc2815a516aa05f953e59a;p=thirdparty%2Flibvirt.git systemd: Introduce service_in/service_out variables They're similar to the existing socket_in/socket_out variables and will make future changes nicer. Signed-off-by: Andrea Bolognani Reviewed-by: Daniel P. Berrangé --- diff --git a/src/meson.build b/src/meson.build index 6c85cc9b9b..c6728cc8f8 100644 --- a/src/meson.build +++ b/src/meson.build @@ -816,9 +816,12 @@ if conf.has('WITH_LIBVIRTD') 'sockmode': sockmode, }) + service_in = unit['service_in'] + service_out = '@0@.service'.format(unit['service']) + configure_file( - input: unit['service_in'], - output: '@0@.service'.format(unit['service']), + input: service_in, + output: service_out, configuration: unit_conf, install: true, install_dir: systemd_unit_dir,