Last active
April 12, 2022 23:11
-
-
Save gigabyteservice/7c4bdbfb3a111ce0ba02493a33a48d1e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
set -e | |
# set -e: Exit immediately if a command exits with a non-zero status. | |
mynickjibri=`uuidgen` | |
# change the nickname of jibri | |
sed -i "s/\(^\s*nickname\s*=\).*/\1 \"$mynickjibri\"/" \ | |
/etc/jitsi/jibri/jibri.conf | |
systemctl restart jibri |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment