mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
23dce98e89
Use app.slice by default in user manager (and define special user slices)
34 lines
854 B
Meson
34 lines
854 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
|