From c58814c2ace4adeab16ecb1062ea3b441ff94962 Mon Sep 17 00:00:00 2001 From: dluman Date: Sun, 16 Jun 2024 16:55:04 -0400 Subject: [PATCH] Recalling that the omnipresence command is 'presence' --- dockerfiles/venture/api-container/Dockerfile | 2 +- scripts/direvents.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/venture/api-container/Dockerfile b/dockerfiles/venture/api-container/Dockerfile index 27a7cb8..ff4a455 100644 --- a/dockerfiles/venture/api-container/Dockerfile +++ b/dockerfiles/venture/api-container/Dockerfile @@ -80,7 +80,7 @@ RUN sudo mkdir -p /run/sendsigs.omit.d RUN echo "sudo mount api.theterm.world:/world/dungeon /dungeon" >> /etc/bash.bashrc # Setup call to omnipresence to register new users; update old -RUN echo "report" >> /etc/bash.bashrc +RUN echo "presence" >> /etc/bash.bashrc # Add the "entrypoint.sh" file from the Docker build context to the image, and make the "entrypoint.sh" file executable ADD entrypoint.sh entrypoint.sh diff --git a/scripts/direvents.sh b/scripts/direvents.sh index dc979da..4f934d9 100644 --- a/scripts/direvents.sh +++ b/scripts/direvents.sh @@ -1,4 +1,4 @@ direvents(){ - builtin cd "$@" && { [ ! -f .flavor ] || cat .flavor 1>&2; } && { [ ! -f .events ] || . .events; } && { report; }} + builtin cd "$@" && { [ ! -f .flavor ] || cat .flavor 1>&2; } && { [ ! -f .events ] || . .events; } && { presence; }} } alias cd=direvents