public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-misc/spiped/files/
@ 2017-09-17 20:29 Patrice Clement
  0 siblings, 0 replies; 2+ messages in thread
From: Patrice Clement @ 2017-09-17 20:29 UTC (permalink / raw
  To: gentoo-commits

commit:     dd56a2682f13d63345386183d8840dbc1b6201dc
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 17 20:29:19 2017 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Sep 17 20:29:44 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd56a268

net-misc/spiped: indent initd file.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 net-misc/spiped/files/spiped.initd | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/net-misc/spiped/files/spiped.initd b/net-misc/spiped/files/spiped.initd
index ccc95ac80ad..80a164c6499 100644
--- a/net-misc/spiped/files/spiped.initd
+++ b/net-misc/spiped/files/spiped.initd
@@ -16,17 +16,17 @@ command_user="${SPIPED_USER}"
 pidfile="/run/${RC_SVCNAME}.pid"
 
 depend() {
-	use net
-	before logger
+    use net
+    before logger
 }
 
 checkconfig() {
-  if [[ ! "$IS_CONFIGURED" == "yes" ]]; then
-    eerror "You need to setup /etc/conf.d/spiped first!"
-    return 1
-  fi
+    if [[ ! "$IS_CONFIGURED" == "yes" ]]; then
+        eerror "You need to setup /etc/conf.d/spiped first!"
+        return 1
+    fi
 }
 
 start_pre() {
-	checkconfig || return 1
+    checkconfig || return 1
 }


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/spiped/files/
@ 2023-01-12 22:55 Patrice Clement
  0 siblings, 0 replies; 2+ messages in thread
From: Patrice Clement @ 2023-01-12 22:55 UTC (permalink / raw
  To: gentoo-commits

commit:     68ea4dcfcb973282c49c8cd186dc2cb57d3673a8
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 12 22:54:28 2023 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Jan 12 22:55:36 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68ea4dcf

net-misc/spiped: switch string cmp to POSIX sh

Closes: https://bugs.gentoo.org/849329
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 net-misc/spiped/files/spiped.initd | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/spiped/files/spiped.initd b/net-misc/spiped/files/spiped.initd
index 80a164c64999..ce94315c0a6a 100644
--- a/net-misc/spiped/files/spiped.initd
+++ b/net-misc/spiped/files/spiped.initd
@@ -21,7 +21,7 @@ depend() {
 }
 
 checkconfig() {
-    if [[ ! "$IS_CONFIGURED" == "yes" ]]; then
+    if [ ! "$IS_CONFIGURED" = "yes" ]; then
         eerror "You need to setup /etc/conf.d/spiped first!"
         return 1
     fi


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-01-12 22:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-12 22:55 [gentoo-commits] repo/gentoo:master commit in: net-misc/spiped/files/ Patrice Clement
  -- strict thread matches above, loose matches on Subject: below --
2017-09-17 20:29 Patrice Clement

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox