From f5d62fdcd4a6d351fa25af3b3e443ba4de67a802 Mon Sep 17 00:00:00 2001 From: David P Date: Fri, 29 Sep 2017 14:18:19 -0300 Subject: Added configs/profile-openrc --- .../root-image/etc/init.d/pacman-init | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 configs/profile-openrc/root-image/etc/init.d/pacman-init (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 new file mode 100755 index 0000000..ccc884c --- /dev/null +++ b/configs/profile-openrc/root-image/etc/init.d/pacman-init @@ -0,0 +1,30 @@ +#!/usr/bin/openrc-run +# Copyright (C) 2017 Parabola Project +# Copyright 2013-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +description="Initializes Pacman keyring" + +depend() { + use haveged + after haveged +} + +start() { + # Check that there's no keyring, if there isn't, create one + if [ ! -d /etc/pacman.d/gnupg ]; then + ebegin "Starting Pacman keyring" + pacman-key --init &> /dev/null + pacman-key --populate archlinux parabola &> /dev/null + else + ebegin "Pacman Keyring already started" + fi +} + +stop() { + # If there's a keyring, delete it + if [ -d /etc/pacman.d/gnupg ]; then + ebegin "Stoping Pacman keyring" + rm -rf /etc/pacman.d/gnupg + fi +} -- cgit v1.2.2