summaryrefslogtreecommitdiff
path: root/initscript
diff options
context:
space:
mode:
authorPavel Šimerda <psimerda@redhat.com>2012-11-18 13:49:07 +0100
committerPavel Šimerda <psimerda@redhat.com>2012-11-18 14:56:39 +0100
commit449ca34cb042dce0f5265e1ea42160332d702c36 (patch)
treebb6aed9eb39f702bf2783583c54f4df67e9faf30 /initscript
parent90b99522d7b35e253926e48f5df8a22270ab7610 (diff)
initscripts: remove Gentoo initscript
The Gentoo initscript is being patched downstream anyway. It will be easier to maintain it in just one place. See discussion at bugs.gentoo.org: https://bugs.gentoo.org/show_bug.cgi?id=441754
Diffstat (limited to 'initscript')
-rwxr-xr-xinitscript/Gentoo/NetworkManager.in23
1 files changed, 0 insertions, 23 deletions
diff --git a/initscript/Gentoo/NetworkManager.in b/initscript/Gentoo/NetworkManager.in
deleted file mode 100755
index 7db410be9f..0000000000
--- a/initscript/Gentoo/NetworkManager.in
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/sbin/runscript
-# Copyright (c) 2008 Saleem Abdulrasool <compnerd@compnerd.org>
-# Distributed under the terms of the GNU General Purpose License v2
-# $Header: $
-
-depend() {
- need dbus
-}
-
-start() {
- ebegin "Starting NetworkManager"
- start-stop-daemon --start --quiet --pidfile /var/run/NetworkManager.pid \
- --exec /usr/sbin/NetworkManager -- --pid-file /var/run/NetworkManager.pid
- eend $?
-}
-
-stop() {
- ebegin "Stopping NetworkManager"
- start-stop-daemon --stop --quiet --pidfile /var/run/NetworkManager.pid
- eend $?
-}
-
-# vim: set ft=gentoo-init-d ts=3 sw=3 et: