diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2017-09-17 22:29:19 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-09-17 22:29:44 +0200 |
commit | dd56a2682f13d63345386183d8840dbc1b6201dc (patch) | |
tree | a1f0cc979e838de23e13a05748326d0bf607a331 /net-misc/spiped | |
parent | dev-libs/libpqxx: Drop old (diff) | |
download | gentoo-dd56a2682f13d63345386183d8840dbc1b6201dc.tar.gz gentoo-dd56a2682f13d63345386183d8840dbc1b6201dc.tar.bz2 gentoo-dd56a2682f13d63345386183d8840dbc1b6201dc.zip |
net-misc/spiped: indent initd file.
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'net-misc/spiped')
-rw-r--r-- | net-misc/spiped/files/spiped.initd | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/net-misc/spiped/files/spiped.initd b/net-misc/spiped/files/spiped.initd index ccc95ac80add..80a164c64999 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 } |