-
Notifications
You must be signed in to change notification settings - Fork 90
Debian based install script and Scouts Canada Image set #260
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
|
|
||
| # Install Raspbian Bullseye | ||
| # Install all updates | ||
| # Enable SSH from the Preferences, Raspberry Pi Configuration | ||
|
|
||
| # # Adding DerbyNet Apt Repo | ||
| sudo apt-get update | ||
| sudo apt-get install -y apt-transport-https | ||
| wget -q -O- https://jeffpiazza.org/derbynet/debian/jeffpiazza_derbynet.gpg | sudo tee /usr/share/keyrings/derbynet-archive-keyring.gpg > /dev/null | ||
| echo "deb [arch=all signed-by=/usr/share/keyrings/derbynet-archive-keyring.gpg] " " https://jeffpiazza.org/derbynet/debian stable main" | sudo tee /etc/apt/sources.list.d/derbynet.list > /dev/null | ||
| sudo apt-get update | ||
|
|
||
| # # Install | ||
| # Clean up older versions | ||
| sudo apt-get remove derbynet | ||
|
|
||
| # # New Version | ||
| sudo apt-get install derbynet-server | ||
| sudo apt-get remove apache2 | ||
|
|
||
| # # Checks | ||
| # Folder /usr/share/derbynet will now exist | ||
|
|
||
| # # Timer | ||
| sudo apt-get install derbynet-timer | ||
| # sudo derby-timer.jar to get it started | ||
| # or maybe this: java -jar /usr/bin/derby-timer.jar -simulate-timer -lanes 4 to simulate the timer | ||
|
|
||
| # # Extras | ||
| sudo apt-get install derbynet-extras |
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If there aren't grade-specific icons, would it make more sense to replicate the ScoutsCanada emblem image for each of the centuries? |
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you really want the "It starts with Scouts." tag line, or just the emblem on its own? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In order for someone to make use of the shell script for Debian install, someone would have to find the script on GitHub, then either pull the source to their host, or copy the contents of the script into a new script, and then run that. It's hard for me to imagine that work flow getting a lot of use.