From 28ac70b189ccdb28ffb47726b1163d84480a10da Mon Sep 17 00:00:00 2001 From: nemsia Date: Mon, 25 Jun 2018 11:29:58 +0200 Subject: [PATCH 1/4] Update to peertubbe-v1.0.0-beta9 --- conf/app.src | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/app.src b/conf/app.src index 9955955..a67df85 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/Chocobozzz/PeerTube/releases/download/v1.0.0-beta.8/peertube-v1.0.0-beta.8.tar.xz -SOURCE_SUM=524c3fc77b07c2b1f3cd529d071cbd1f14bb665ca9defd2219d423139b42c3f3 +SOURCE_URL=https://github.com/Chocobozzz/PeerTube/releases/download/v1.0.0-beta.9/peertube-v1.0.0-beta.9.tar.xz +SOURCE_SUM=9ebc47cfbfe1b9b846706b3f620e9a2c874d0ef6e754932d5cd4336ce2712aa4 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.xz SOURCE_IN_SUBDIR=true From 36845e23a447e3e29ea68a99cd7e781b0a01ec3f Mon Sep 17 00:00:00 2001 From: anmol26s <5068843+anmol26s@users.noreply.github.com> Date: Mon, 25 Jun 2018 15:29:14 +0530 Subject: [PATCH 2/4] Updated readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9b11527..b2a0f4e 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Install Peertube with YunoHost](https://install-app.yunohost.org/install-with-yunohost.png)](https://install-app.yunohost.org/?app=peertube)

======= -**Shipped Version: v1.0.0-beta.8** +Shipped Version: **v1.0.0-beta.9**

From 99fe6fcd54f9134eddcb4b240fa2e5df14690a50 Mon Sep 17 00:00:00 2001 From: anmol26s <5068843+anmol26s@users.noreply.github.com> Date: Mon, 25 Jun 2018 15:31:09 +0530 Subject: [PATCH 3/4] Updated manifest --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 94f2c71..cecad5d 100644 --- a/manifest.json +++ b/manifest.json @@ -5,7 +5,7 @@ "description": { "en": "Video streaming platform using P2P directly in the web browser, connected to a federated network" }, - "version": "1.0.0-beta.8", + "version": "1.0.0-beta.9", "url": "https://github.com/Chocobozzz/PeerTube", "license": "AGPL-3.0-only", "maintainer": { From cb991bb6f33ee13e79cc0458f7ca0251bc86018c Mon Sep 17 00:00:00 2001 From: anmol26s <5068843+anmol26s@users.noreply.github.com> Date: Mon, 25 Jun 2018 15:42:05 +0530 Subject: [PATCH 4/4] Few changes to be tested in the install script The email should have the username too along with the password. The nginx should be reloaded before the systemd and password generation to fix https://github.com/YunoHost-Apps/peertube_ynh/issues/30(guess work). These changes were due to be tested along side the next release. --- scripts/install | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/scripts/install b/scripts/install index c05d617..d447373 100644 --- a/scripts/install +++ b/scripts/install @@ -209,6 +209,12 @@ fi # Give permisiion to the final_path chown -R "$app":"$app" "$final_path" "$datadir" +#================================================= +# RELOAD NGINX +#================================================= + +systemctl reload nginx + #================================================= # SETUP SYSTEMD #================================================= @@ -229,13 +235,6 @@ systemctl start "$app" echo $admin_pass | NODE_CONFIG_DIR="$final_path/config" NODE_ENV=production PATH="/opt/node_n/bin:$PATH" npm run reset-password -- -u root ) - -#================================================= -# RELOAD NGINX -#================================================= - -systemctl reload nginx - #================================================= # SEND A README FOR THE ADMIN #================================================= @@ -244,6 +243,7 @@ message="PeerTube was successfully installed :) Please open 'https://$domain$path_url' +The admin username is: root Here is the admin password: '$admin_pass' If you facing an issue or want to improve this app, please open a new issue in this project: https://github.com/YunoHost-Apps/peertube_ynh"