Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Moving to HTTPS for installer
  • Loading branch information
Jim Van Fleet committed Nov 14, 2016
1 parent 218b44e commit 2442377
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 21 deletions.
18 changes: 0 additions & 18 deletions .gitignore
Expand Up @@ -7,21 +7,3 @@ bin/run.sh
bin/start.sh
bin/stop.sh
bin/test.sh
bin/build.sh
bin/destroy.sh
bin/install.sh
bin/rebuild.sh
bin/rerun.sh
bin/run.sh
bin/start.sh
bin/stop.sh
bin/test.sh
bin/build.sh
bin/destroy.sh
bin/install.sh
bin/rebuild.sh
bin/rerun.sh
bin/run.sh
bin/start.sh
bin/stop.sh
bin/test.sh
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -23,7 +23,7 @@ ONBUILD ADD additional_container_files /opt
RUN mkdir -p /opt/grouper/$VERSION \
&& mv /opt/etc/grouper.installer.properties /opt/grouper/$VERSION/. \
&& mv /opt/etc/MariaDB.repo /etc/yum.repos.d/MariaDB.repo \
&& curl -o /opt/grouper/$VERSION/grouperInstaller.jar http://software.internet2.edu/grouper/release/$VERSION/grouperInstaller.jar \
&& curl -o /opt/grouper/$VERSION/grouperInstaller.jar https://software.internet2.edu/grouper/release/$VERSION/grouperInstaller.jar \
&& yum -y update \
&& yum -y install --setopt=tsflags=nodocs \
dos2unix \
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Expand Up @@ -36,7 +36,7 @@ node('docker') {

stage 'Build'
try{
sh 'bin/rebuild.sh &> debug'
sh 'bin/rebuild.sh >> debug'
} catch(error) {
def error_details = readFile('./debug');
def message = "BUILD ERROR: There was a problem building the Base Image. \n\n ${error_details}"
Expand Down
3 changes: 2 additions & 1 deletion container_files/etc/grouper.installer.properties
@@ -1,5 +1,5 @@
# this should be before the version number
download.server.url = http://software.internet2.edu/grouper
download.server.url = https://software.internet2.edu/grouper
# default version to install
grouper.version = 2.3.0
# print out autorun keys in prompts so you can easily see how to configure the autorun
Expand All @@ -16,6 +16,7 @@ download.pspSource.url = https://github.com/Internet2/grouper-psp/archive/$BRANC
## If you uncomment one of these properties it will be used as empty, only uncomment to use
##
##############################

#### set this to true to try to use defaults for everything. Only things without default values will need to be set
grouperInstaller.autorun.useDefaultsAsMuchAsAvailable = true
########## AUTORUN PROPERTIES WITH NO DEFAULT OR ARE COMMONLY CHANGED
Expand Down

0 comments on commit 2442377

Please sign in to comment.