1systemd = dependency('systemd') 2systemd_system_unit_dir = systemd.get_variable( 3 pkgconfig: 'systemd_system_unit_dir', 4) 5 6foreach svc : [ 7 'obmc-fru-fault-monitor.service', 8 'obmc-led-group-start@.service', 9 'obmc-led-group-stop@.service', 10 'xyz.openbmc_project.LED.GroupManager.service', 11] 12 install_data(svc, install_dir: systemd_system_unit_dir) 13endforeach 14