Implemented missing code for trial request to generate proper subscription / perpetual keys on request

This commit is contained in:
2022-08-22 20:35:43 +00:00
parent 2c509dcbe3
commit 5d8b0c1b6b
5 changed files with 90 additions and 56 deletions

View File

@@ -30,6 +30,7 @@ UPLOAD releases to ayanova.com/download/next folder where it will be staged befo
#### NEXT folder version
##### Perpetual
cd /var/ayanova && \
sudo systemctl stop ayanova.service && \
sudo curl -O https://www.ayanova.com/download/next/ayanova-linux-x64-server.zip && \
@@ -49,6 +50,28 @@ sudo rm -r ./wwwroot && \
sudo unzip -o ayanova-linux-x64-server.zip -x "config.json" && \
sudo systemctl start ayanovaa261.service
#### SUBSCRIPTION
cd /var/ayanova && \
sudo systemctl stop ayanova.service && \
sudo curl -O https://www.ayanova.com/download/next/ayanova-subscription-linux-x64-server.zip && \
sudo rm *.dll && \
sudo rm -r ./resource && \
sudo rm -r ./wwwroot && \
sudo unzip -o ayanova-subscription-linux-x64-server.zip -x "config.json" && \
sudo systemctl start ayanova.service
(a261 server)
cd /var/ayanovaa261 && \
sudo systemctl stop ayanovaa261.service && \
sudo curl -O https://www.ayanova.com/download/next/ayanova-subscription-linux-x64-server.zip && \
sudo rm *.dll && \
sudo rm -r ./resource && \
sudo rm -r ./wwwroot && \
sudo unzip -o ayanova-subscription-linux-x64-server.zip -x "config.json" && \
sudo systemctl start ayanovaa261.service
#### MAIN RELEASE folder version
cd /var/ayanova && \