From d5e1363cbb2409be82ec53cdf428ab752a4e2c79 Mon Sep 17 00:00:00 2001 From: Gerardo Exequiel Pozzi Date: Wed, 3 Oct 2012 10:52:13 -0300 Subject: [configs/releng] Remove files for sysvinit and initscripts Signed-off-by: Gerardo Exequiel Pozzi --- configs/releng/root-image/etc/rc.d/pacman-init | 34 -------------------------- 1 file changed, 34 deletions(-) delete mode 100755 configs/releng/root-image/etc/rc.d/pacman-init (limited to 'configs/releng/root-image/etc/rc.d/pacman-init') diff --git a/configs/releng/root-image/etc/rc.d/pacman-init b/configs/releng/root-image/etc/rc.d/pacman-init deleted file mode 100755 index bbbd719..0000000 --- a/configs/releng/root-image/etc/rc.d/pacman-init +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -case "$1" in - start) - stat_busy "Initializing pacman keyring" - if { pacman-key --init && pacman-key --populate archlinux; } &>/dev/null; then - add_daemon pacman-init - stat_done - else - stat_fail - exit 1 - fi - ;; - - stop) - stat_busy "Removing pacman keyring" - rm -rf /etc/pacman.d/gnupg - rm_daemon pacman-init - stat_done - ;; - - restart) - $0 stop - $0 start - ;; - - *) - echo "usage: $0 {start|stop|restart}" -esac - -exit 0 -- cgit v1.2.3-54-g00ecf