diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2021-01-10 21:33:20 +0100 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2021-01-10 21:39:45 +0100 |
commit | b73f73076eae41c4e0c881ad502a162b70c52f4a (patch) | |
tree | b2c811bf1d023b0e7766d5c74292eb4159f5a0cb | |
parent | media-libs/gst-plugins-base: drop Prefix keywords, bug #662458 (diff) | |
download | gentoo-b73f73076eae41c4e0c881ad502a162b70c52f4a.tar.gz gentoo-b73f73076eae41c4e0c881ad502a162b70c52f4a.tar.bz2 gentoo-b73f73076eae41c4e0c881ad502a162b70c52f4a.zip |
acct-user.eclass: fix style
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
-rw-r--r-- | eclass/acct-user.eclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/acct-user.eclass b/eclass/acct-user.eclass index 077b9bef678d..ba2fff43a191 100644 --- a/eclass/acct-user.eclass +++ b/eclass/acct-user.eclass @@ -165,7 +165,7 @@ acct-user_add_deps() { eislocked() { [[ $# -eq 1 ]] || die "usage: ${FUNCNAME} <user>" - if [[ ${EUID} != 0 ]] ; then + if [[ ${EUID} != 0 ]]; then einfo "Insufficient privileges to execute ${FUNCNAME[0]}" return 0 fi @@ -202,7 +202,7 @@ eislocked() { elockuser() { [[ $# -eq 1 ]] || die "usage: ${FUNCNAME} <user>" - if [[ ${EUID} != 0 ]] ; then + if [[ ${EUID} != 0 ]]; then einfo "Insufficient privileges to execute ${FUNCNAME[0]}" return 0 fi @@ -245,7 +245,7 @@ elockuser() { eunlockuser() { [[ $# -eq 1 ]] || die "usage: ${FUNCNAME} <user>" - if [[ ${EUID} != 0 ]] ; then + if [[ ${EUID} != 0 ]]; then einfo "Insufficient privileges to execute ${FUNCNAME[0]}" return 0 fi @@ -420,7 +420,7 @@ acct-user_pkg_preinst() { acct-user_pkg_postinst() { debug-print-function ${FUNCNAME} "${@}" - if [[ ${EUID} != 0 ]] ; then + if [[ ${EUID} != 0 ]]; then einfo "Insufficient privileges to execute ${FUNCNAME[0]}" return 0 fi @@ -440,7 +440,7 @@ acct-user_pkg_postinst() { acct-user_pkg_prerm() { debug-print-function ${FUNCNAME} "${@}" - if [[ ${EUID} != 0 ]] ; then + if [[ ${EUID} != 0 ]]; then einfo "Insufficient privileges to execute ${FUNCNAME[0]}" return 0 fi |