changeset 44:f69c1de25f3f

system/acpid: rename script
author David Demelier <markand@malikania.fr>
date Tue, 26 Feb 2019 20:30:00 +0100
parents 89d4b8c1d85f
children 150ab6e07b07
files system/acpid/acpid system/acpid/acpid.sh system/acpid/rc.acpid
diffstat 3 files changed, 69 insertions(+), 69 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/system/acpid/acpid	Tue Feb 26 20:30:00 2019 +0100
@@ -0,0 +1,68 @@
+#!/bin/sh
+#
+# Copyright (c) 2019 David Demelier <markand@malikania.fr>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+
+ACPID_CMD=/usr/sbin/acpid
+ACPID_ARGS=--netlink
+ACPID_PID=/var/run/acpid/acpid.pid
+
+acpid_start()
+{
+	echo "Starting acpid: $ACPID_CMD $ACPID_ARGS"
+	$ACPID_CMD $ACPID_ARGS -p $ACPID_PID
+}
+
+acpid_status()
+{
+	if [ -s $ACPID_PID ]; then
+		echo "acpid is running with pid: `cat $ACPID_PID`"
+	else
+		echo "acpid is not running"
+	fi
+}
+
+acpid_stop()
+{
+	if [ -s $ACPID_PID ]; then
+		echo "Stopping acpid..."
+		kill -QUIT $ACPID_PID
+	fi
+}
+
+acpid_restart()
+{
+	acpid_stop
+	sleep 3
+	acpid_start
+}
+
+case $1 in
+start)
+	acpid_start
+	;;
+status)
+	acpid_status
+	;;
+stop)
+	acpid_stop
+	;;
+restart)
+	acpid_restart
+	;;
+*)
+	echo "usage: $(basename $0) restart|start|status|stop"
+	;;
+esac
--- a/system/acpid/acpid.sh	Tue Feb 26 20:27:00 2019 +0100
+++ b/system/acpid/acpid.sh	Tue Feb 26 20:30:00 2019 +0100
@@ -38,6 +38,6 @@
 
 popd
 mkdir -p $DESTDIR/etc/rc.d
-cp rc.acpid $DESTDIR/etc/rc.d
+cp acpid $DESTDIR/etc/rc.d
 
 rm -rf $PKGNAME-$PKGVERSION
--- a/system/acpid/rc.acpid	Tue Feb 26 20:27:00 2019 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,68 +0,0 @@
-#!/bin/sh
-#
-# Copyright (c) 2019 David Demelier <markand@malikania.fr>
-#
-# Permission to use, copy, modify, and/or distribute this software for any
-# purpose with or without fee is hereby granted, provided that the above
-# copyright notice and this permission notice appear in all copies.
-#
-# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
-# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
-# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
-# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
-# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
-# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-#
-
-ACPID_CMD=/usr/sbin/acpid
-ACPID_ARGS=--netlink
-ACPID_PID=/var/run/acpid/acpid.pid
-
-acpid_start()
-{
-	echo "Starting acpid: $ACPID_CMD $ACPID_ARGS"
-	$ACPID_CMD $ACPID_ARGS -p $ACPID_PID
-}
-
-acpid_status()
-{
-	if [ -s $ACPID_PID ]; then
-		echo "acpid is running with pid: `cat $ACPID_PID`"
-	else
-		echo "acpid is not running"
-	fi
-}
-
-acpid_stop()
-{
-	if [ -s $ACPID_PID ]; then
-		echo "Stopping acpid..."
-		kill -QUIT $ACPID_PID
-	fi
-}
-
-acpid_restart()
-{
-	acpid_stop
-	sleep 3
-	acpid_start
-}
-
-case $1 in
-start)
-	acpid_start
-	;;
-status)
-	acpid_status
-	;;
-stop)
-	acpid_stop
-	;;
-restart)
-	acpid_restart
-	;;
-*)
-	echo "usage: $(basename $0) restart|start|status|stop"
-	;;
-esac