You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
518 B
INI
21 lines
518 B
INI
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
[Unit]
|
|
Description=Initializes Pacman keyring
|
|
Requires=etc-pacman.d-gnupg.mount
|
|
After=etc-pacman.d-gnupg.mount
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
RemainAfterExit=yes
|
|
ExecStart=/bin/bash -c "echo hi"
|
|
ExecStart=/usr/bin/pacman-key --init
|
|
ExecStart=/usr/bin/pacman-key --populate archlinux
|
|
ExecStart=/usr/bin/reflector --latest 5 --sort rate --save /etc/pacman.d/mirrorlist
|
|
ExecStart=/usr/bin/sed -i 's/#Server/Server/g' /etc/pacman.d/mirrorlist
|
|
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|