commit: 4d251b8d32c7594770ec3fae5fd1c4027f03d150 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Sun Jan 5 20:58:55 2025 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Sun Jan 5 20:58:55 2025 +0000 URL: https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=4d251b8d
Replace "root privileges" with "superuser privileges" * ctags.eselect (test_for_root): * emacs.eselect (test_for_root): * gnuclient.eselect (test_for_root): Replace "root privileges" with "superuser privileges". Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> ChangeLog | 7 +++++++ ctags.eselect | 4 ++-- emacs.eselect | 4 ++-- gnuclient.eselect | 4 ++-- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index d954d17..46f8a2c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2025-01-05 Ulrich Müller <[email protected]> + + * ctags.eselect (test_for_root): + * emacs.eselect (test_for_root): + * gnuclient.eselect (test_for_root): Replace "root privileges" + with "superuser privileges". + 2023-08-20 Ulrich Müller <[email protected]> * ctags.eselect (do_show, do_list, do_set, do_update): diff --git a/ctags.eselect b/ctags.eselect index 99be1a6..683818e 100644 --- a/ctags.eselect +++ b/ctags.eselect @@ -1,5 +1,5 @@ # -*-eselect-*- -# Copyright 2005-2023 Gentoo Authors +# Copyright 2005-2025 Gentoo Authors # Distributed under the terms of the GNU GPL version 2 or later # # DOCUMENTATION @@ -96,7 +96,7 @@ set_symlinks() { test_for_root() { # checks if the user has rights to modify /usr/bin/ - [[ -w ${EROOT}/usr/bin ]] || die -q "You need root privileges!" + [[ -w ${EROOT}/usr/bin ]] || die -q "You need superuser privileges!" } ### show action ### diff --git a/emacs.eselect b/emacs.eselect index 7c5139c..f749ec4 100644 --- a/emacs.eselect +++ b/emacs.eselect @@ -1,5 +1,5 @@ # -*-eselect-*- -# Copyright 2005-2021 Gentoo Authors +# Copyright 2005-2025 Gentoo Authors # Distributed under the terms of the GNU GPL version 2 or later # # DOCUMENTATION @@ -163,7 +163,7 @@ vim_info() { test_for_root() { # checks if the user has rights to modify /usr/bin/ - [[ -w ${EROOT}/usr/bin ]] || die -q "You need root privileges!" + [[ -w ${EROOT}/usr/bin ]] || die -q "You need superuser privileges!" } ### show action ### diff --git a/gnuclient.eselect b/gnuclient.eselect index 5dec28b..b595696 100644 --- a/gnuclient.eselect +++ b/gnuclient.eselect @@ -1,5 +1,5 @@ # -*-eselect-*- -# Copyright 2005-2021 Gentoo Authors +# Copyright 2005-2025 Gentoo Authors # Distributed under the terms of the GNU GPL version 2 or later # # DOCUMENTATION @@ -97,7 +97,7 @@ set_symlinks() { test_for_root() { # checks if the user has rights to modify /usr/bin/ - [[ -w ${EROOT}/usr/bin ]] || die -q "You need root privileges!" + [[ -w ${EROOT}/usr/bin ]] || die -q "You need superuser privileges!" } ### show action ###
