From: "Florian Schmaus" <flow@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/eselect-java:java-vm-update commit in: /, src/modules/
Date: Fri, 24 Jun 2022 08:17:13 +0000 (UTC) [thread overview]
Message-ID: <1656058614.387323902452153fceb1f61e3d6bb5b3bfeba786.flow@gentoo> (raw)
commit: 387323902452153fceb1f61e3d6bb5b3bfeba786
Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 24 07:49:14 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Fri Jun 24 08:16:54 2022 +0000
URL: https://gitweb.gentoo.org/proj/eselect-java.git/commit/?id=38732390
Decide based on the UID if system or user VM should be modified
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
NEWS | 1 +
src/modules/java-vm.eselect.in | 18 +++++++++++++++++-
2 files changed, 18 insertions(+), 1 deletion(-)
diff --git a/NEWS b/NEWS
index d8ea978..52fbfe5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,6 @@
NEXT:
* Add "eselect java-vm update" (#853928)
+ * Decide on UID if system or user VM should be set
0.4.3:
* install jpackage symlink
diff --git a/src/modules/java-vm.eselect.in b/src/modules/java-vm.eselect.in
index c7d5a82..571b26e 100644
--- a/src/modules/java-vm.eselect.in
+++ b/src/modules/java-vm.eselect.in
@@ -116,7 +116,7 @@ describe_set_parameters() {
}
do_set() {
- local usage="Usage <user|system> <VM>"
+ local usage="Usage [user|system] <VM>"
local ifunset=0
if [[ ${1} == "--if-unset" ]]; then
@@ -124,6 +124,22 @@ do_set() {
shift
fi
+ # Automatically decide, based in the invoking user's UID, if the
+ # user or system Java VM should be modified.
+ if [[ ${#} -eq 1 ]]; then
+ if ! is_number "${1}"; then
+ die -q ${usage}
+ fi
+
+ local kind
+ if [[ ${UID} -eq 0 ]]; then
+ kind="system"
+ else
+ kind="user"
+ fi
+ set -- ${kind} ${@}
+ fi
+
if [[ ${#} != 2 ]]; then
die -q ${usage}
elif [[ ${1} == "system" ]]; then
next reply other threads:[~2022-06-24 8:17 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-24 8:17 Florian Schmaus [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-06-24 9:21 [gentoo-commits] proj/eselect-java:java-vm-update commit in: /, src/modules/ Florian Schmaus
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1656058614.387323902452153fceb1f61e3d6bb5b3bfeba786.flow@gentoo \
--to=flow@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox