From 1bf80f77f7a8bb4ffdd203c60662421e3f8f589b Mon Sep 17 00:00:00 2001 From: David P Date: Sun, 1 Oct 2017 17:19:40 -0300 Subject: Added configs/mate-openrc Other changes: - Updated talkingparabola-X11 packages.both (xorg pkgs) - Updated pacman-init service for profile-openrc --- configs/profile-openrc/root-image/etc/init.d/pacman-init | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'configs/profile-openrc/root-image/etc/init.d/pacman-init') diff --git a/configs/profile-openrc/root-image/etc/init.d/pacman-init b/configs/profile-openrc/root-image/etc/init.d/pacman-init index ccc884c..b610683 100755 --- a/configs/profile-openrc/root-image/etc/init.d/pacman-init +++ b/configs/profile-openrc/root-image/etc/init.d/pacman-init @@ -1,23 +1,24 @@ #!/usr/bin/openrc-run # Copyright (C) 2017 Parabola Project -# Copyright 2013-2017 Gentoo Foundation +# Copyright (C) Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 description="Initializes Pacman keyring" depend() { use haveged - after haveged + after haveged } start() { # Check that there's no keyring, if there isn't, create one + # in the background for a faster boot if [ ! -d /etc/pacman.d/gnupg ]; then ebegin "Starting Pacman keyring" - pacman-key --init &> /dev/null + pacman-key --init &> /dev/null && pacman-key --populate archlinux parabola &> /dev/null else - ebegin "Pacman Keyring already started" + ebegin "Pacman keyring already started" fi } -- cgit v1.2.2