From 4f01d9ecb88bce05314f05b5a763dcb60542eccb Mon Sep 17 00:00:00 2001 From: Stefan Jumarea Date: Thu, 5 Mar 2026 13:21:10 +0200 Subject: [PATCH] MISC: fix typos in alice module The alice module had a few issues, it created the "01" link two times instead of "00" and "01", and the options order for "vid set" was wrong. Signed-off-by: Stefan Jumarea --- misc/etc/eos/config/modules/alice | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/etc/eos/config/modules/alice b/misc/etc/eos/config/modules/alice index 567e931944..01906e2b81 100644 --- a/misc/etc/eos/config/modules/alice +++ b/misc/etc/eos/config/modules/alice @@ -38,13 +38,13 @@ if [ $? -ne 0 ]; then adduser --uid ${ALICE_UID} alice fi -eos vid set map \ -unix vuid:${ALICE_UID} -eos vid set map \ -unix vgid:${ALICE_GID} +eos vid set map -unix \ vuid:${ALICE_UID} +eos vid set map -unix \ vgid:${ALICE_GID} eos mkdir -p /eos/${INSTANCE_NAME:3}/grid/ eos chown ${ALICE_UID}:${ALICE_GID} /eos/${INSTANCE_NAME:3}/grid/ eos chmod 700 /eos/${INSTANCE_NAME:3}/grid/ -for name in 01 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 ; do +for name in 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 ; do eos map link /$name/ /eos/${INSTANCE_NAME:3}/grid/$name/ eos mkdir -p /eos/${INSTANCE_NAME:3}/grid/$name/ done