@@ -166,7 +166,12 @@ else
166166 echo " esnet docker network already exists"
167167fi
168168
169-
169+ # add the command to
170+ # start the UCSC Computational Genomics Platform (CGP) container that sets up the
171+ # Nginx config template with the uuids for each of the containers in the CGP
172+ # at boot time
173+ echo " Attempting to add docker start core-config-gen to rc.local"
174+ sudo ./put_core_start_cmd_in_rc.sh
170175
171176# RUN THE CONSONANCE INSTALLER
172177run_consonance_launcher=' '
@@ -901,9 +906,12 @@ while [[ "${run_boardwalk^^}" != 'Y' && "${run_boardwalk^^}" != 'N' ]] ; do
901906 login_password=" $( generate_password) "
902907 echo " generating SECRET_KEY for login"
903908 secret_key=" $( generate_password) "
909+
910+ echo " generating LOG_IN_TOKEN for boardwalk check session"
911+ login_token=" $( generate_password) "
904912
905913 # TODO: The script should snoop the .env file and check if it has a password assigned already and use that. Otherwise, generate a random password.
906- core_client_version=' 1.1.1 '
914+ core_client_version=' 1.1.2 '
907915 # Now write a config for this file.
908916 [[ -f boardwalk_launcher_config/boardwalk.config ]] || mkdir -p boardwalk_launcher_config
909917
@@ -942,6 +950,8 @@ while [[ "${run_boardwalk^^}" != 'Y' && "${run_boardwalk^^}" != 'N' ]] ; do
942950"LOGIN_POSTGRES_DB":"${login_db} ",
943951"LOGIN_POSTGRES_PASSWORD":"${login_password} ",
944952"SECRET_KEY":"${secret_key} ",
953+ "LOG_IN_TOKEN":"${login_token} ",
954+ "SERVER_NAME":"${dcc_dashboard_host} ",
945955"DCC_CORE_CLIENT_VERSION":"${core_client_version} "
946956}
947957CONFIG
0 commit comments