overte-AleziaKurdis/pkg-scripts
Heather Anderson 00e8ce9bb8 Initial code pass:
- adding migrate-from-athena (copying server state over, launching services)
- deletes all server files on purge
2020-06-05 23:34:32 -07:00
..
deb-functions Initial code pass: 2020-06-05 23:34:32 -07:00
docker-entrypoint.sh Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
docker-vircadia-supervisor.conf Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
Dockerfile.templ Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
make-deb-server Initial code pass: 2020-06-05 23:34:32 -07:00
make-docker-server Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
make-rpm-server Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
new-server Initial code pass: 2020-06-05 23:34:32 -07:00
README Updating AWS Linux rpm builder 2020-03-08 07:46:08 +00:00
server-control Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
server-postinst Initial code pass: 2020-06-05 23:34:32 -07:00
server-postrm Initial code pass: 2020-06-05 23:34:32 -07:00
server-prerm Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
server-rules Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
vircadia-assignment-client.service Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
vircadia-assignment-client@.service Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
vircadia-domain-server.service Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
vircadia-domain-server@.service Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
vircadia-ice-server.service Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
vircadia-ice-server@.service Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
vircadia-server.spec Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
vircadia-server.target Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00
vircadia-server@.target Initial pass renaming athena -> vircadia 2020-06-05 23:34:31 -07:00

Collection of scripts to create server distribution packages.  Most of these scripts assume
use of the build script at https://github.com/daleglass/athena-builder, specifically that
the following directory structure exists

base folder/
	source/		git checkout
	build/		result of cmake build
	qt5-install/	installed or built Qt5 installation

These scripts assume that the current directory is the pkg-scripts folder inside of the source directory
and that the base folder can be reached by going to "../..".  This may not work if pkg-scripts is a symlink;
adding an ATHENA=~/Athena to the beginning of the commandline will override where it looks for the base folder

Ubuntu:
	DEBEMAIL="your-email@somewhere.com" DEBFULLNAME="Your Full Name" ./make-deb-server

	This script will retrieve the current git commit date and hash and assemble a version from it.
	It will attempt construct a .deb file in the pkg-scripts folder

Amazon Linux 2:
	./make-rpm-server

	This script will retrieve the current git commit date and hash and assemble a version from it.
	It will attempt construct an .rpm file in the pkg-scripts folder

Docker:
	./make-docker-server

	This script will attempt to create a docker container

Results:
	The following directory structure is created for binaries:
		/opt/athena - executables
		/opt/athena/lib - private shared libraries required for executables
		/opt/athena/resources - files required by domain-server administrative website
		/opt/athena/plugins - files required by assignment-client, mainly for audio codecs

	The following systemd services are installed in /usr/lib/systemd/system:
		athena-assignment-client.service
		athena-domain-server.service
		athena-server.target - used to launch/shutdown the two prior services
		athena-assignment-client@.service
		athena-domain-server@.service
		athena-server@.target - used to launch/shutdown the two prior services

		The top three services in this list are the "normal" services that launch Athena
		in the typical fashion.  The bottom three services are "template" services designed
		to permit multiple services to be installed and running on a single machine.

		The script "/opt/athena/new-server serverName basePort" will do the necessary
		setup for a new domain with the specified server name and port.  Upon installation
		the package will create and launch a domain named "default" at base port 40100.
		The domain name here has nothing to do with the name people will use to find your
		domain and has nothing to do with "place names", it is only used to locate the files
		used to configure and run the domain on your server.

	The server stores its files in the following locations:
		/var/lib/athena/.local - "unnamed" services (the default location for Athena servers)
		/var/lib/athena/serverName - "named" (template) domains
		/etc/opt/athena - environment variables when launching named domains