blob: 7309bee8739cf11de6ba4f6af6900f8a1e37ef0f [file] [log] [blame]
John Wedig2f187342022-04-20 12:47:03 -07001systemd_dep = dependency('systemd')
2
3systemd_system_unitdir = systemd_dep.get_variable(
Patrick Williams0ff71002023-04-12 08:01:25 -05004 'systemdsystemunitdir')
John Wedig2f187342022-04-20 12:47:03 -07005
6conf_data = configuration_data()
7conf_data.set('BINDIR', get_option('prefix') / get_option('bindir'))
8
9configure_file(
10 configuration: conf_data,
11 input: 'xyz.openbmc_project.eStoraged.service.in',
12 output: 'xyz.openbmc_project.eStoraged.service',
13 install: true,
14 install_dir: systemd_system_unitdir,
15)