summaryrefslogtreecommitdiff
path: root/pcr/openrc-misc/10-openrc-status-r4
diff options
context:
space:
mode:
authorGaming4JC <g4jc@openmailbox.org>2015-08-28 23:05:00 -0400
committerGaming4JC <g4jc@openmailbox.org>2015-08-28 23:05:00 -0400
commitf46bdf9d5bfc6eeae828539a234e957fe2b2e042 (patch)
tree560f0a1e67351a7a75900b4ddc41a34158873d72 /pcr/openrc-misc/10-openrc-status-r4
parent698cfed94cf9c654ecf39a809821359ba6f4c70c (diff)
parentda0dc67b72e2c1a374260ea6ef5aa3f0f805d90d (diff)
merge
Diffstat (limited to 'pcr/openrc-misc/10-openrc-status-r4')
-rw-r--r--pcr/openrc-misc/10-openrc-status-r435
1 files changed, 0 insertions, 35 deletions
diff --git a/pcr/openrc-misc/10-openrc-status-r4 b/pcr/openrc-misc/10-openrc-status-r4
deleted file mode 100644
index e195ccc19..000000000
--- a/pcr/openrc-misc/10-openrc-status-r4
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-# Copyright (c) 2012 Alexandre Rostovtsev
-# Released under the 2-clause BSD license.
-
-# Ensures that the NetworkManager OpenRC service is marked as started and
-# providing net only when it has a successful connection.
-
-if [ ! -e "/run/openrc/softlevel" ]; then
- # OpenRC is not running
- exit 0
-fi
-
-# Ensure rc-service is in PATH
-PATH="${PATH}:@EPREFIX@/sbin:@EPREFIX@/usr/sbin"
-
-# Exit if the NetworkManager OpenRC service is not running
-rc-service NetworkManager status 2>&1 | grep -Eq "status: (starting|started|inactive|stopping)" || exit 0
-
-# Call rc-service in background mode so that the start/stop functions update
-# NetworkManager service status to started or inactive instead of actually
-# starting or stopping the daemon
-export IN_BACKGROUND=YES
-
-case "$2" in
- up) nm-online -t 0 -x &&
- ! rc-service NetworkManager status 2>&1 | grep -q started &&
- exec rc-service NetworkManager start ;;
- down) nm-online -t 0 -x ||
- rc-service NetworkManager status 2>&1 | grep -q stopped ||
- exec rc-service NetworkManager stop ;;
- pre-sleep) rc-service NetworkManager status 2>&1 | grep -q stopped ||
- exec rc-service NetworkManager stop ;;
-esac
-exit 0
-# vim: set ts=4: