27 lines
493 B
Bash
27 lines
493 B
Bash
|
# where everything lives,
|
||
|
# such as ./latest ./themes and so on
|
||
|
location=$HOME
|
||
|
|
||
|
# to make sure we can use systemctl
|
||
|
XDG_RUNTIME_DIR=/run/user/$UID
|
||
|
|
||
|
# theme in $HOME/themes to copy
|
||
|
theme=
|
||
|
|
||
|
# this is used for setting
|
||
|
# a random new password for a demo user
|
||
|
#
|
||
|
# needed to obtain an admin token
|
||
|
kcadmin=
|
||
|
kcadminpw=
|
||
|
# the admin api port
|
||
|
kcport=38081
|
||
|
# our user to modify:
|
||
|
kcuserid=fbe-123-456-ee0oab
|
||
|
newpw=
|
||
|
kcrealm=
|
||
|
|
||
|
app=keycloak # service and dumpfile name
|
||
|
db=
|
||
|
user=$db
|
||
|
dump=$HOME/var/db/$app.dump
|