Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor fixes to rebuild_base_installers_for_seattlegeni.sh. #136

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions rebuild_base_installers_for_seattlegeni.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@

VERSION=$1

SOFTWARE_UPDATE_URL=http://blackbox.cs.washington.edu/updatesite/
USER=geni

SOFTWARE_UPDATE_URL=http://seattlesoftwareupdater.poly.edu/updatesite/
PUBLIC_KEY_FILE=/path/to/softwareupdater.publickey
PRIVATE_KEY_FILE=/path/to/softwareupdater.privatekey

Expand Down Expand Up @@ -98,10 +100,10 @@ fi

sudo chown geni seattle_*

sudo -u geni ln -s -f seattle_${VERSION}_linux.tgz seattle_linux.tgz
sudo -u geni ln -s -f seattle_${VERSION}_mac.tgz seattle_mac.tgz
sudo -u geni ln -s -f seattle_${VERSION}_win.zip seattle_win.zip

sudo -u $USER ln -s -f seattle_${VERSION}_linux.tgz seattle_linux.tgz
sudo -u $USER ln -s -f seattle_${VERSION}_mac.tgz seattle_mac.tgz
sudo -u $USER ln -s -f seattle_${VERSION}_win.zip seattle_win.zip
sudo -u $USER ln -s -f seattle_${VERSION}_android.zip seattle_android.zip
popd

echo "New base installers created and installed for seattlegeni."
Expand Down