]> git.ipfire.org Git - thirdparty/systemd.git/blob - units/user/meson.build
user: move "extrinsic" units to their root slice
[thirdparty/systemd.git] / units / user / meson.build
1 # SPDX-License-Identifier: LGPL-2.1+
2
3 units = [
4 'app.slice',
5 'background.slice',
6 'basic.target',
7 'bluetooth.target',
8 'default.target',
9 'exit.target',
10 'graphical-session-pre.target',
11 'graphical-session.target',
12 'paths.target',
13 'printer.target',
14 'session.slice',
15 'shutdown.target',
16 'smartcard.target',
17 'sockets.target',
18 'sound.target',
19 'systemd-exit.service',
20 'systemd-tmpfiles-clean.service',
21 'systemd-tmpfiles-clean.timer',
22 'systemd-tmpfiles-setup.service',
23 'timers.target',
24 ]
25
26 if conf.get('ENABLE_XDG_AUTOSTART') == 1
27 units += [ 'xdg-desktop-autostart.target', ]
28 endif
29
30 foreach file : units
31 install_data(file,
32 install_dir : userunitdir)
33 endforeach