mirror of
https://github.com/systemd/systemd.git
synced 2024-11-02 02:21:44 +03:00
34 lines
849 B
Meson
34 lines
849 B
Meson
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
units = [
|
|
'app.slice',
|
|
'background.slice',
|
|
'basic.target',
|
|
'bluetooth.target',
|
|
'default.target',
|
|
'exit.target',
|
|
'graphical-session-pre.target',
|
|
'graphical-session.target',
|
|
'paths.target',
|
|
'printer.target',
|
|
'session.slice',
|
|
'shutdown.target',
|
|
'smartcard.target',
|
|
'sockets.target',
|
|
'sound.target',
|
|
'systemd-exit.service',
|
|
'systemd-tmpfiles-clean.service',
|
|
'systemd-tmpfiles-clean.timer',
|
|
'systemd-tmpfiles-setup.service',
|
|
'timers.target',
|
|
]
|
|
|
|
if conf.get('ENABLE_XDG_AUTOSTART') == 1
|
|
units += 'xdg-desktop-autostart.target'
|
|
endif
|
|
|
|
foreach file : units
|
|
install_data(file,
|
|
install_dir : userunitdir)
|
|
endforeach
|