mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
631c9b7bf2
Fixes #10414. v2: - rename .service.in to .service - rename 'exit' to 'exit-force'
39 lines
936 B
Meson
39 lines
936 B
Meson
# SPDX-License-Identifier: LGPL-2.1+
|
|
|
|
units = [
|
|
'basic.target',
|
|
'bluetooth.target',
|
|
'default.target',
|
|
'exit.target',
|
|
'graphical-session-pre.target',
|
|
'graphical-session.target',
|
|
'paths.target',
|
|
'printer.target',
|
|
'shutdown.target',
|
|
'smartcard.target',
|
|
'sockets.target',
|
|
'sound.target',
|
|
'timers.target',
|
|
'systemd-exit.service',
|
|
'systemd-tmpfiles-clean.timer',
|
|
]
|
|
|
|
foreach file : units
|
|
install_data(file,
|
|
install_dir : userunitdir)
|
|
endforeach
|
|
|
|
in_units = [
|
|
'systemd-tmpfiles-clean.service',
|
|
'systemd-tmpfiles-setup.service',
|
|
]
|
|
|
|
foreach file : in_units
|
|
gen = configure_file(
|
|
input : file + '.in',
|
|
output : file,
|
|
configuration : substs)
|
|
install_data(gen,
|
|
install_dir : userunitdir)
|
|
endforeach
|