2015-10-04 07:12:32 +00:00
#! /bin/bash
2015-10-09 12:29:32 +00:00
# vim: set tabstop=4 shiftwidth=4 expandtab filetype=sh:
2015-10-04 07:12:32 +00:00
2015-11-17 13:36:22 +00:00
# A2SERVER master setup script, last update 17-Nov-15
2015-10-03 12:25:44 +00:00
# it downloads and executes several scripts related to the setup of
2015-11-17 13:36:22 +00:00
# netatalk configured for Apple II use on Debian or Raspbian.
2015-12-24 04:02:17 +00:00
# more info is at http://ivanx.com/a2server
2015-10-03 12:25:44 +00:00
# to download and execute, type:
2015-12-24 04:02:17 +00:00
# wget ivanx.com/a2server/setup; source setup
2015-10-03 12:25:44 +00:00
2016-01-15 19:08:45 +00:00
a2serverVersion="131"
2015-10-03 12:25:44 +00:00
2015-10-04 08:23:53 +00:00
# Ensure URL we'll use ends in a /
case "$A2SERVER_SCRIPT_URL" in
*/) scriptURL="$A2SERVER_SCRIPT_URL" ;;
2015-12-24 04:02:17 +00:00
*) scriptURL="${A2SERVER_SCRIPT_URL:-http://ivanx.com/a2server}/" ;;
2015-10-04 08:23:53 +00:00
esac
2015-12-24 04:02:17 +00:00
case "$A2SERVER_BINARY_URL" in
*/) binaryURL="$A2SERVER_BINARY_URL" ;;
*) binaryURL="${A2SERVER_BINARY_URL:-http://ivanx.com/a2server/files}/" ;;
esac
useExternalURL=1
[[ $A2SERVER_NO_EXTERNAL ]] && useExternalURL=
2015-10-04 08:23:53 +00:00
2015-10-03 12:25:44 +00:00
isRpi=
[[ -f /usr/bin/raspi-config ]] && isRpi=1
isDebian=
2015-12-24 04:02:17 +00:00
lsb_release -a 2> /dev/null | grep -q 'Distributor ID:.Debian' && [[ ( -f /etc/debian_version ) && ( $(cut -c 1 < /etc/debian_version) -ge "7" ) ]] && isDebian=1
2015-10-03 12:25:44 +00:00
if [[ -f /usr/local/etc/A2SERVER-version ]]; then
echo "A2SERVER version available: $a2serverVersion"
echo "A2SERVER version installed: $(cat /usr/local/etc/A2SERVER-version)"
fi
2015-12-24 04:02:17 +00:00
echo
[[ $scriptURL != *"ivanx.com"* ]] && echo "Using script URL: $scriptURL"
[[ $binaryURL != *"ivanx.com"* ]] && echo "Using binary URL: $binaryURL"
2016-01-15 19:08:45 +00:00
[[ ! $useExternalURL ]] && echo -e "Not using external URLs. Downloads must be available from:\n ${binaryURL}external/appleii/\n ${binaryURL}external/source/\n (See the A2SERVER developer page for more information.)"
2015-12-24 04:02:17 +00:00
2015-10-03 12:25:44 +00:00
skipRepoUpdate=
autoAnswerYes=
2016-01-15 19:08:45 +00:00
installAll=
2015-10-03 12:25:44 +00:00
setupNetBoot=
setupWindowsSharing=
2016-01-03 21:06:40 +00:00
compileAlways=
2015-10-03 12:25:44 +00:00
updateRasppleII=
2015-11-09 14:40:44 +00:00
rm /tmp/a2server-* 2> /dev/null
2015-10-03 12:25:44 +00:00
while [[ $1 ]]; do
if [[ $1 == "-r" ]]; then
shift
skipRepoUpdate="-r"
touch /tmp/a2server-packageReposUpdated
2016-01-15 19:08:45 +00:00
elif [[ $1 == "-i" ]]; then
shift
installAll="-i"
2015-10-03 12:25:44 +00:00
elif [[ $1 == "-y" ]]; then
shift
autoAnswerYes="-y"
touch /tmp/a2server-autoAnswerYes
elif [[ $1 == "-b" ]]; then
shift
setupNetBoot="-b"
touch /tmp/a2server-setupNetBoot
elif [[ $1 == "-w" ]]; then
shift
setupWindowsSharing="-w"
touch /tmp/a2server-setupWindowsSharing
2016-01-03 21:06:40 +00:00
elif [[ $1 == "-c" ]]; then
shift
compileAlways="-c"
touch /tmp/a2server-compileAlways
2015-10-03 12:25:44 +00:00
elif [[ $1 == "-os" || $1 == "os" ]]; then
2015-10-09 12:29:32 +00:00
# elif [[ ${1,,} == "rasppleii" || ${1,,} == "raspple" || ${1,,} == "rasappleii" || ${1,,} == "rasapple" || ${1,,} == "raspple2" || ${1,,} == "rasapple2" ]]; then
2015-10-03 12:25:44 +00:00
shift
updateRasppleII=1
elif [[ $1 == "-v" ]]; then
shift
if [[ ! -f /usr/local/etc/A2SERVER-version ]]; then
echo "A2SERVER version available: $a2serverVersion"
echo "A2SERVER version installed: none"
fi
[[ $0 == "-bash" ]] && return 1 || exit 1
elif [[ $1 ]]; then
echo "options:"
echo "-v: display installed and available versions, then exit"
2016-01-15 19:08:45 +00:00
echo "-i: reinstall A2SERVER software (but not Apple II software)"
2015-10-03 12:25:44 +00:00
echo "-y: auto-answer yes to all prompts"
echo "-r: don't update package repositories"
echo "-b: auto-setup network boot (use with -y)"
echo "-w: auto-setup Windows file sharing (use with -y)"
2016-01-03 21:06:40 +00:00
echo "-c: compile non-package items, rather than downloading binaries"
2015-10-03 12:25:44 +00:00
if [[ $isRpi ]]; then
echo "-os: update Raspbian OS, A2CLOUD, A2SERVER, and Apple II Pi"
fi
[[ $0 == "-bash" ]] && return 1 || exit 1
fi
done
if [[ $updateRasppleII ]]; then
echo "A2SERVER: Updating Raspple II (takes up to an hour)..."
2015-12-24 04:02:17 +00:00
wget -qO /tmp/raspbian-update "${A2SERVER_SCRIPT_URL}scripts/raspbian-update.txt"
2015-10-03 12:25:44 +00:00
source /tmp/raspbian-update a2cloud a2server $autoAnswerYes $skipRepoUpdate
[[ $0 == "-bash" ]] && return 0 || exit 0
fi
2015-12-10 01:39:09 +00:00
if { [[ -f /usr/local/etc/A2SERVER-version ]] && (( $(head -c 3 /usr/local/etc/A2SERVER-version) < 110 )); }; then
2015-10-03 12:25:44 +00:00
echo
echo "WARNING: The current A2SERVER installer scripts haven't been tested for"
echo "updating the earlier version of A2SERVER that you have. A fresh install"
echo "is suggested. Continuing is not recommended and could make A2SERVER"
echo "no longer work properly, or cause data to be lost."
fi
a2server_update=0
doSetup=1
unsupportedOS=1
if [[ $isRpi ]]; then #supported Raspbian? (16-Feb-15, 20-Jun-14, 09-Jan-14, etc)
fwhash=$(zcat /usr/share/doc/raspberrypi-bootloader/changelog.Debian.gz | grep -m 1 'as of' | awk '{print $NF}')
2015-11-15 21:37:59 +00:00
fwsupported="-8aca5762- -462f3e3f476f7b6- -c32bc633039cd9- -9d34d0475f9-
-d4f5315cfac4e- -6f4a90c8cb8817f- -5dd9b4962e- -17c8799375-
2016-01-03 23:33:40 +00:00
-960832a6c2590635216c296b6ee0bebf67b21d50-
-2a329e0c7d8ea19c085bac5633aa4fccee0f21be-"
2015-12-24 04:02:17 +00:00
[[ "$fwsupported" == *-$fwhash-* ]] && unsupportedOS=
# [[ ($fwhash == "8aca5762") || ($fwhash == "462f3e3f476f7b6") || ($fwhash == "c32bc633039cd9") || ($fwhash == "9d34d0475f9") || ($fwhash == "d4f5315cfac4e") || ($fwhash == "6f4a90c8cb8817f") || ($fwhash == "5dd9b4962e") || ($fwhash == "17c8799375") ]] && unsupportedOS=
elif [[ $isDebian ]]; then # supported Debian?
debianVersion=$(cat /etc/debian_version)
debianSupported="-8.2- -7.9- -7.8- -7.6- -7.3-"
[[ $debianSupported == *-$debianVersion-* ]] && unsupportedOS=
fi
if [[ $unsupportedOS && $isRpi ]]; then
echo
echo "A2SERVER and its installer scripts have been tested on Raspbian Wheezy and"
echo "Jessie, though not this specific firmware version ($fwhash). Just FYI."
unsupportedOS=
elif [[ $unsupportedOS && $isDebian ]]; then
echo
echo "A2SERVER and its installer scripts have been tested on Debian 7 and 8,"
echo "though not this specific point release ($debianVersion). Just FYI."
unsupportedOS=
2015-10-03 12:25:44 +00:00
fi
2015-12-24 04:02:17 +00:00
if [[ $unsupportedOS ]]; then
2015-10-03 12:25:44 +00:00
echo
2015-12-24 04:02:17 +00:00
echo "WARNING: A2SERVER and its installer scripts have only been tested on"
echo "Debian and Raspbian. Continuing is probably fine, but might not be."
2015-10-03 12:25:44 +00:00
echo "Worst case could make your operating system no longer work properly,"
echo "or cause data to be lost."
2015-12-24 04:02:17 +00:00
echo "More information is at http://ivanx.com/a2server."
2015-10-03 12:25:44 +00:00
fi
doSetup=1
if [[ ! -f /usr/local/etc/a2server-help.txt ]] || (( $a2server_update )); then
2015-10-09 12:29:32 +00:00
echo
echo "Setting up A2SERVER will take up to 60 minutes, during which"
echo "you'll see a bunch of stuff spit out across the screen."
echo
if [[ ! $autoAnswerYes ]]; then
echo -n "Ready to set up A2SERVER? "
read
[[ ${REPLY:0:1} == "y" || ${REPLY:0:1} == "Y" ]]; doSetup=$(( 1 - $? ))
2015-10-03 12:25:44 +00:00
fi
fi
if (( $doSetup )); then
echo
echo "a2server-setup modifies files and performs actions as the root user."
2015-12-24 04:02:17 +00:00
echo "For details, visit http://ivanx.com/a2server."
2015-10-03 12:25:44 +00:00
echo
2015-10-09 12:29:32 +00:00
if [[ ! $autoAnswerYes ]]; then
2015-10-03 12:25:44 +00:00
echo -n "Continue? "
read
[[ ${REPLY:0:1} == "y" || ${REPLY:0:1} == "Y" ]]; doSetup=$(( 1 - $? ))
fi
2015-10-06 06:52:43 +00:00
2015-10-03 12:25:44 +00:00
if (( $doSetup )); then
userPw=$(sudo grep "^$USER" /etc/shadow | cut -f 2 -d ':')
[[ $userPw == "$(echo 'apple2' | perl -e '$_ = <STDIN>; chomp; print crypt($_, $ARGV[0])' "${userPw%"${userPw#\$*\$*\$}"}")" ]] && isApple2Pw=1 || isApple2Pw=
[[ $userPw == "$(echo 'raspberry' | perl -e '$_ = <STDIN>; chomp; print crypt($_, $ARGV[0])' "${userPw%"${userPw#\$*\$*\$}"}")" ]] && isRaspberryPw=1 || isRaspberryPw=
password="your password"
[[ $isApple2Pw ]] && password="'apple2'"
[[ $isRaspberryPw ]] && password="'raspberry'"
2015-10-06 06:52:43 +00:00
2015-10-03 12:25:44 +00:00
[[ $isRpi ]] && a2server="your Raspberry Pi" || a2server="A2SERVER"
if [[ ! $isApple2Pw && ! -f /usr/local/etc/A2SERVER-version ]]; then
if [[ ! $autoAnswerYes ]]; then
echo
echo "To ensure that all client computers are able to connect to"
2016-01-03 23:33:40 +00:00
echo "${a2server} using the same password, you probably want"
2015-10-03 12:25:44 +00:00
echo "to change your user password to 'apple2'."
echo
echo -n "Do you want to change the password for user '$USER' to 'apple2' now? "
read
fi
if [[ $autoAnswerYes || ${REPLY:0:1} == "Y" || ${REPLY:0:1} == "y" ]]; then
echo "A2SERVER: changing password for user '$USER' to 'apple2'..."
echo "$USER:apple2" | sudo chpasswd
fi
fi
echo
echo "During this installation, enter ${password} if prompted for passwords."
echo
sudo true
2015-10-06 06:52:43 +00:00
2015-10-03 12:25:44 +00:00
echo
echo "A2SERVER: Downloading scripts..."
2015-10-06 06:52:43 +00:00
2015-10-04 08:23:53 +00:00
wget -q -O /tmp/1.storage "${scriptURL}scripts/a2server-1-storage.txt"
2015-10-03 12:25:44 +00:00
chmod ugo+x /tmp/1.storage
2015-10-06 06:52:43 +00:00
2015-10-04 08:23:53 +00:00
wget -q -O /tmp/2.tools "${scriptURL}scripts/a2server-2-tools.txt"
2015-10-03 12:25:44 +00:00
chmod ugo+x /tmp/2.tools
2015-10-04 08:23:53 +00:00
wget -q -O /tmp/3.sharing "${scriptURL}scripts/a2server-3-sharing.txt"
2015-10-03 12:25:44 +00:00
chmod ugo+x /tmp/3.sharing
2015-10-06 06:52:43 +00:00
2015-10-04 08:23:53 +00:00
wget -q -O /tmp/5.netboot "${scriptURL}scripts/a2server-5-netboot.txt"
2015-10-03 12:25:44 +00:00
chmod ugo+x /tmp/5.netboot
2015-10-06 06:52:43 +00:00
2015-10-04 08:23:53 +00:00
wget -q -O /tmp/6.samba "${scriptURL}scripts/a2server-6-samba.txt"
2015-10-03 12:25:44 +00:00
chmod ugo+x /tmp/6.samba
2015-10-06 06:52:43 +00:00
2015-10-04 08:23:53 +00:00
wget -q -O /tmp/7.console "${scriptURL}scripts/a2server-7-console.txt"
2015-10-03 12:25:44 +00:00
chmod ugo+x /tmp/7.console
echo "A2SERVER: Scripts have been downloaded. Installing..."
2015-10-06 06:52:43 +00:00
2016-01-15 19:08:45 +00:00
if [[ $installAll ]]; then
sudo rm /usr/local/etc/A2SERVER-version 2> /dev/null
sudo rm /usr/local/bin/nulib2 2> /dev/null
sudo rm /usr/local/bin/unar 2> /dev/null
sudo rm /usr/local/sbin/macipgw 2> /dev/null
sudo rm /usr/local/bin/ciopfs 2> /dev/null
sudo rm /usr/local/etc/netatalk/afppasswd 2> /dev/null
sudo rm /usr/local/etc/netatalk/a2boot/p8 /usr/local/etc/netatalk/a2boot/ProDOS16\ Image 2> /dev/null
fi
2015-10-03 12:25:44 +00:00
/tmp/1.storage
rm /tmp/1.storage
/tmp/2.tools
rm /tmp/2.tools
/tmp/3.sharing
rm /tmp/3.sharing
/tmp/5.netboot
rm /tmp/5.netboot
/tmp/6.samba
rm /tmp/6.samba
/tmp/7.console
rm /tmp/7.console
rm /tmp/a2server-packageReposUpdated &> /dev/null
2015-10-06 06:52:43 +00:00
2015-10-03 12:25:44 +00:00
if [[ ! -f /usr/local/etc/A2SERVER-version ]] \
2015-12-10 01:39:09 +00:00
|| (( $(head -c 3 /usr/local/etc/A2SERVER-version) < ${a2serverVersion:0:3} )); then
2015-10-03 12:25:44 +00:00
echo "$a2serverVersion" | sudo tee /usr/local/etc/A2SERVER-version &> /dev/null
fi
2015-12-18 05:45:01 +00:00
source /usr/local/etc/a2serverrc
2015-10-03 12:25:44 +00:00
# get Kernel release (e.g. 3.6.11+) and version (e.g. #557)
kernelRelease=$(uname -r)
kernelMajorRelease=$(cut -d '.' -f 1 <<< $kernelRelease)
kernelMinorRelease=$(cut -d '.' -f 2 <<< $kernelRelease | sed 's/\(^[0-9]*\)[^0-9].*$/\1/')
2015-12-08 04:47:03 +00:00
echo
2015-10-03 12:25:44 +00:00
# all done, see if AppleTalk is available and notify either way
if [[ $(ps aux | grep [a]talkd) ]]; then
echo "You now have a fully functional file server for Apple II clients."
echo "On an Apple IIe, it should be accessible via \"Log In\" on the"
echo "Workstation Card software. For IIgs users, it should be accessible"
echo "via the AppleShare control panel."
2015-12-24 04:02:17 +00:00
if [[ -f /srv/A2SERVER/A2FILES/System/Start.GS.OS ]]; then
echo
echo "You can network boot GS/OS. On a ROM 01 IIgs, set slot 1 or 2, and slot 7,"
echo 'to AppleTalk, and Startup Slot to 7 or "Scan". On a ROM 3 IIgs, set'
2016-01-03 23:33:40 +00:00
echo "slot 1 or 2, and Startup Slot, to AppleTalk."
2015-12-24 04:02:17 +00:00
fi
if [[ -f /srv/A2SERVER/A2FILES/BASIC.System ]]; then
echo
echo "You can network boot ProDOS 8. On an Apple IIe, put your Workstation Card"
echo "in a slot above your disk controller card, or type PR#X with open-apple"
echo "held down, with X being the slot of your Workstation Card."
echo 'On a IIgs, press "8" during the initial procession of periods.'
fi
2015-10-03 12:25:44 +00:00
echo
echo "A2SERVER setup is complete! Go connect from your Apple II!"
echo
elif [[ -f /tmp/rpiUpdate ]]; then
echo "A2SERVER is now configured, but Apple II clients will not be able"
echo "to connect until you restart your Raspberry Pi."
echo
if [[ ! $autoAnswerYes ]]; then
echo -n "Restart now? "
read
fi
if [[ $autoAnswerYes || ${REPLY:0:1} == "Y" || ${REPLY:0:1} == "y" ]]; then
sudo shutdown -r now
echo
echo "A2SERVER: Preparing to restart..."
while :; do sleep 60; done
fi
rm /tmp/rpiUpdate
echo
2015-12-08 04:47:03 +00:00
elif [[ $kernelMajorRelease -eq 3 && $kernelMinorRelease -ge 12 && $kernelMinorRelease -le 15 ]]; then
2015-10-03 12:25:44 +00:00
echo "A2SERVER is now configured, but Apple II clients cannot connect"
echo "because of a kernel-crashing bug in Linux kernel 3.12 through 3.15."
echo "You have kernel version $kernelMajorRelease.$kernelMinorRelease."
echo "A2SERVER has disabled AppleTalk networking to prevent crashes."
echo "Please use kernel 3.11 or earlier, or kernel 3.16 or later."
echo
else
echo "A2SERVER is now configured, but Apple II clients cannot connect because"
echo "AppleTalk networking is unavailable. Please make sure that"
echo "your Linux distribution has a loadable AppleTalk kernel module or"
echo "has AppleTalk built into the kernel, and restart your server."
echo "Or, if you previously disabled AppleTalk in A2SERVER, re-enable it"
echo "by typing 'appletalk-on'."
echo
fi
2015-12-20 05:40:28 +00:00
if [[ -f /tmp/noMacIP ]]; then
echo
echo "MacIP connections may be unavailable. If you know how, try"
echo "recompiling the AppleTalk kernel module with IPDDP options disabled."
echo
rm /tmp/noMacIP
fi
2015-10-06 06:52:43 +00:00
2015-10-03 12:25:44 +00:00
if [[ -f /tmp/singleUser ]]; then
if [[ ! $autoAnswerYes ]]; then
2015-12-20 05:40:28 +00:00
echo
2015-10-03 12:25:44 +00:00
echo "Your Raspberry Pi was started in single-user mode in order to"
echo -n "fix a problem. You should restart to operate normally. Restart now? "
read
fi
if [[ $autoAnswerYes || ${REPLY:0:1} == "Y" || ${REPLY:0:1} == "y" ]]; then
sudo shutdown -r now
echo
echo "A2SERVER: Preparing to restart..."
while :; do sleep 60; done
fi
2015-12-20 05:40:28 +00:00
rm /tmp/singleUser
2015-10-03 12:25:44 +00:00
echo
fi
2015-10-06 06:52:43 +00:00
2015-10-03 12:25:44 +00:00
echo
2015-10-09 12:29:32 +00:00
echo "Type 'system-shutdown' to turn off A2SERVER."
echo "Type 'a2server-setup' to configure network boot."
echo "Type 'a2server-help' for a list of other commands."
2015-10-03 12:25:44 +00:00
fi
fi
unset a2server_update 2> /dev/null
unset doSetup 2> /dev/null
2016-01-03 21:06:40 +00:00
rm /tmp/a2server-* 2> /dev/null
2015-10-03 12:25:44 +00:00
rm setup &> /dev/null