mirror of
https://github.com/systemd/systemd.git
synced 2025-01-21 22:04:01 +03:00
066f6bfb62
This turns systemd-ask-password into a small Varlink service, so that there's an standard IPC way to ask for a password. It mostly directly exposes the functionality of the Varlink service.
65 lines
2.4 KiB
Meson
65 lines
2.4 KiB
Meson
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
units = [
|
|
{ 'file' : 'app.slice' },
|
|
{ 'file' : 'background.slice' },
|
|
{ 'file' : 'basic.target' },
|
|
{ 'file' : 'bluetooth.target' },
|
|
{ 'file' : 'capsule@.target' },
|
|
{ 'file' : 'default.target' },
|
|
{ 'file' : 'exit.target' },
|
|
{ 'file' : 'graphical-session-pre.target' },
|
|
{ 'file' : 'graphical-session.target' },
|
|
{ 'file' : 'paths.target' },
|
|
{ 'file' : 'printer.target' },
|
|
{ 'file' : 'session.slice' },
|
|
{ 'file' : 'shutdown.target' },
|
|
{ 'file' : 'smartcard.target' },
|
|
{ 'file' : 'sockets.target' },
|
|
{ 'file' : 'sound.target' },
|
|
{
|
|
'file' : 'systemd-ask-password.socket',
|
|
'symlinks' : ['sockets.target.wants/']
|
|
},
|
|
{ 'file' : 'systemd-ask-password@.service' },
|
|
{ 'file' : 'systemd-exit.service' },
|
|
{ 'file' : 'systemd-tmpfiles-clean.service' },
|
|
{ 'file' : 'systemd-tmpfiles-clean.timer' },
|
|
{ 'file' : 'systemd-tmpfiles-setup.service' },
|
|
{ 'file' : 'timers.target' },
|
|
{
|
|
'file' : 'xdg-desktop-autostart.target',
|
|
'conditions': ['ENABLE_XDG_AUTOSTART'],
|
|
}
|
|
]
|
|
|
|
foreach unit : units
|
|
file = unit.get('file')
|
|
|
|
install = true
|
|
foreach cond : unit.get('conditions', [])
|
|
if conf.get(cond) != 1
|
|
install = false
|
|
break
|
|
endif
|
|
endforeach
|
|
|
|
if install
|
|
install_data(file,
|
|
install_dir : userunitdir)
|
|
|
|
foreach target : unit.get('symlinks', [])
|
|
if target.endswith('/')
|
|
install_emptydir(userunitdir / target)
|
|
meson.add_install_script(sh, '-c',
|
|
ln_s.format(userunitdir / file,
|
|
userunitdir / target / file))
|
|
else
|
|
meson.add_install_script(sh, '-c',
|
|
ln_s.format(userunitdir / file,
|
|
userunitdir / target))
|
|
endif
|
|
endforeach
|
|
endif
|
|
endforeach
|