mirror of
https://github.com/RasppleII/a2cloud.git
synced 2024-11-23 07:34:38 +00:00
f9e0861005
Do not put this hash into production without the following one! As with a2server, I've written a new setup.txt that downloads the entire a2cloud source tree for installation, which allows the monolithic script to be broken up into smaller pieces without worrying about that breaking the web install—but it's not included in this revision so that git can keep track of the rename of setup.txt to ivan.sh. Despite the fact there is no 2.0.0 release yet, 1.9 is already so close that it doesn't give Ivan any breathing room for any patches he wants to make, so my intention is to skip major version 2 entirely other than for this transition. The final release will be given the 3.0.0 version number.
27 lines
869 B
Bash
Executable File
27 lines
869 B
Bash
Executable File
#! /bin/bash
|
|
# vim: set tabstop=4 shiftwidth=4 noexpandtab filetype=sh:
|
|
|
|
# install.sh - a2cloud main installation script
|
|
#
|
|
# To the extent possible under law, T. Joseph Carter and Ivan Drucker have
|
|
# waived all copyright and related or neighboring rights to the a2cloud
|
|
# scripts themselves. Software used or installed by these scripts is subject
|
|
# to other licenses. This work is published from the United States.
|
|
|
|
a2cloudVersion="2.9.0"
|
|
|
|
# Find the path of our source directory
|
|
a2cSource="$( dirname "${BASH_SOURCE[0]}" )"
|
|
pushd $a2cSource >/dev/null
|
|
a2cSource="$PWD"
|
|
popd >/dev/null
|
|
if [[ ! -f "$a2cSource/.a2cloud_source" ]]; then
|
|
printf "\na2cloud: cannot find a2cloud source directory in $a2cSource.\n\n"
|
|
exit 1
|
|
fi
|
|
|
|
# Run the legacy setup script for anything not yet ported
|
|
if [[ -e "${a2cSource}/setup/ivan.sh" ]]; then
|
|
"${a2cSource}/setup/ivan.sh" "$@"
|
|
fi
|