mirror of
https://github.com/RasppleII/a2server.git
synced 2026-04-19 06:35:02 +00:00
16e1306dbb
- Added bash check to install.sh - Switched to using top_src instead of a2sSource (not yet in ivan.sh subscripts) - Added processing of -y and -c flags to install.sh ala a2cloud - Put the intro blurb and continue question in install.sh (didn't remove the one from ivan.sh yet as it serves as a useful way to test things about to be in progress and stop after them…) - Added the fixup script, currently empty for a2server, but ohh will that be changing! - Added the show_changes script. It doesn't do a whole lot for a2server just like it doesn't for a2cloud yet. To be addressed. Higher priorities right now. - Fixed a bug where fresh installs would say that upgrading from your version of a2server wasn't supported anymore.
28 lines
1.1 KiB
Bash
Executable File
28 lines
1.1 KiB
Bash
Executable File
#! /bin/bash
|
|
# vim: set tabstop=4 shiftwidth=4 noexpandtab filetype=sh:
|
|
|
|
# fixup - correct any mistakes from previous versions
|
|
#
|
|
# To the extent possible under law, T. Joseph Carter and Ivan Drucker have
|
|
# waived all copyright and related or neighboring rights to the a2server
|
|
# scripts themselves. Software used or installed by these scripts is subject
|
|
# to other licenses. This work is published from the United States.
|
|
|
|
# The idea behind this script is to prevent other scripts from becoming a
|
|
# minefield of ancient and deprecated code designed to compensate for other
|
|
# even more ancient and replaced code that is no longer needed, no longer
|
|
# useful, and honestly complicates maintenance of that code. Everything here
|
|
# will explain what it does, when it was put here, and it should remain clear
|
|
# when the legacy code may be removed.
|
|
#
|
|
# The use of functions which get immediately called is to try and prevent the
|
|
# long spidery conditional blocks a2cloud was originally known for.
|
|
|
|
# # Added 2000-00-00
|
|
# fix_some_stupid_mistake()
|
|
# {
|
|
# # Needed until: Upgrades from 0.0.0 no longer supported
|
|
# :
|
|
# }
|
|
# fix_some_stupid_mistake
|