15 lines
253 B
SYSTEMD
15 lines
253 B
SYSTEMD
|
#
|
||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
[Unit]
|
||
|
Description=Initializes Pacman keyring
|
||
|
|
||
|
[Service]
|
||
|
Type=oneshot
|
||
|
RemainAfterExit=yes
|
||
|
ExecStart=/usr/bin/pacman-key --init
|
||
|
ExecStart=/usr/bin/pacman-key --populate
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|