From 2add5afc7cab225ec030dbad9f637010aff6f234 Mon Sep 17 00:00:00 2001 From: TheOnePath Date: Fri, 28 May 2021 18:09:13 +0100 Subject: [PATCH 1/4] Updated updater to v0.1.3 Implemented notification system. - Send a notification to the user's system using the `notify` function in common. - Notifications are send on most important outcomes of the update session meaning program can have STDOUT piped to another location and still receive a message after operation. - Added the `--no-notify` flag to prevent notifications from being sent to the user. By default, notifications will be sent without this flag. - Program now checks to ensure the script is being ran with root privilages. Program will exit otherwise without notification. - Program now keeps track of garbage data to ensure a proper clean up after operation of a session. - Unnecessary large volumes of data sat in /tmp/ can be removed instantly to prevent taking up space which isn't required. File sizes significantly less can remain and cleared out on next restart of the system. - Updated usage message. - Changed some of the output messages. - Fixed bug with relative paths. --- updater | 70 ++++++++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 52 insertions(+), 18 deletions(-) diff --git a/updater b/updater index 6368933..2174288 100755 --- a/updater +++ b/updater @@ -8,6 +8,7 @@ # gunzip # # tar # # sort (coreutils >= 8.32) # +# notify-send # # # # # # Disclaimer: This version only works for MS Edge Beta. # @@ -15,9 +16,9 @@ # and potentially both. # # # # Author: Ethan Smith-Coss # -# Version: 0.1.2 # +# Version: 0.1.3 # # Created: 2021-05-20T16:47+0100 # -# Last Modified: 2021-05-23T21:18+0100 # +# Last Modified: 2021-05-28T12:54+0100 # # # # #################################### # # # @@ -41,7 +42,7 @@ ## program name prog_name="Microsoft Edge Updater" ## version -version="0.1.2" +version="0.1.3" ## usage statement usage="Usage: $(basename $0) [OPTION] $prog_name ($version) - An updater program which can install the latest available version of Microsoft Edge to non-Debian-based Linux distros. @@ -49,16 +50,19 @@ $prog_name ($version) - An updater program which can install the latest availabl DISCLAIMER: Currently this program can only update the Beta release of Microsoft Edge for amd64 architectures. Options: - -y, --yes-all Assume yes to all yes/no decisions. - -v, --version Print out the version of the script and exit. - --help Print this help message and exit + -nn, --no-notify Prevent notifications from being set after a session. + -y, --yes-all Assume yes to all yes/no decisions. + -v, --version Print out the version of the script and exit. + -h, --help Print this help message and exit " runtime_dir=$(realpath "${BASH_SOURCE[0]}" | xargs -r dirname) +## runtime locations log_file="$runtime_dir/.log.1" logs_dir="$runtime_dir/logs" tmp_path="/tmp/microsoft-edge-autoupdater" garbage="$tmp_path/garbage.tmp" +## program timer SECONDS=0 [[ ! -d "$logs_dir" ]] && mkdir "$logs_dir" @@ -68,9 +72,15 @@ SECONDS=0 function clean_up { log "DEBUG" "EXIT signal was raised, cleaning up system after session before exiting..." "$log_file" printf "Cleaning up system after session..." - cp "$log_file" "$logs_dir/updater.log" && rm "$log_file" - [[ -d "$tmp_path/opt" ]] && rm -r "$tmp_path/opt" - [[ -d "$tmp_path/usr" ]] && rm -r "$tmp_path/usr" + cp "$log_file" "$logs_dir/updater.log" # && rm "$log_file" +# [[ -d "$tmp_path/opt" ]] && rm -r "$tmp_path/opt" +# [[ -d "$tmp_path/usr" ]] && rm -r "$tmp_path/usr" + + while read -r garbage_collection ; do + [[ -f "$garbage_collection" || -d "$garbage_collection" ]] && rm -r "$garbage_collection" + done < <(cat "$garbage") + [[ -f "$garbage" ]] && rm "$garbage" + log "CLEANER" "Finished cleaning up system after session. Nice and clean :D Goodbye." "$runtime_dir/logs/updater.log" echo "done. Goodbye." @@ -88,7 +98,7 @@ while test $# -gt 0 ; do -y | --yes-all) yes_flag=0 ; shift ;; - --help) + -h | --help) echo "$usage" exit 0 ;; @@ -96,26 +106,36 @@ while test $# -gt 0 ; do echo "$prog_name ($version)" exit 0 ;; + -nn | --no-notify) + nn_flag=0 ; shift + ;; *) shift ;; esac done -source "$runtime_dir/utils/common" -log "PREINIT" "----[New instance of script has been started: $(date -Iseconds)]----" "$log_file" - -## setup the yes flag to automatically accept all yes/no inputs -yes_flag="${yes_flag:-1}" -log "DEBUG" "The yes flag has been set to: $yes_flag." "$log_file" +## check if the script is being ran as root - exit otherwise +[[ $(id -u) -ne 0 ]] && { echo "Please run script with root privilages." ; exit 1 ; } # set trap to trigger clean up function on any exit trap clean_up EXIT +source "$runtime_dir/utils/common" +log "PREINIT" "----[New instance of script has been started: $(date -Iseconds)]----" "$log_file" +echo "$log_file" >> "$garbage" + +## setup the yes flag to automatically accept all yes/no inputs +yes_flag=${yes_flag:-1} +log "DEBUG" "The yes flag has been set to: $yes_flag." "$log_file" +## setup the no-notify (nn) flag if notify-send isn't installed +command -v notify-send >/dev/null 2>&1 || nn_flag=0 +nn_flag=${nn_flag:-1} + ## check if Microsoft Edge (Beta) is already installed exit_code=$(command -v microsoft-edge-beta &>/dev/null) [[ ! $exit_code -eq 0 ]] && { echo "Microsoft Edge (Beta) is not installed. Exiting updater..." ; -log "DEBUG" "Microsoft Edge (Beta) not recognised as an installed program. Exiting...(1)" ; exit 1 ; } + log "DEBUG" "Microsoft Edge (Beta) not recognised as an installed program. Exiting...(1)" ; exit 1 ; } log "DEBUG" "Microsoft Edge (Beta) is installed to system. Proceeding with update..." "$log_file" ## ensure source.list exists @@ -135,6 +155,8 @@ echo "Checking to see if the host is known and reachable..." if ! wget --spider "$host" >/dev/null 2>&1 ; then echo "Cannot reach end-point for distribution information. Check your Internet connection and try again. Exiting..." log "DEBUG" "Upstream end-point is cannot be contacted. Potential Internet connection issue or end-point address ($dist_upstream). Exiting...(3)" "$log_file" + [[ ! $nn_flag -eq 0 ]] && notify "Microsoft Edge (Beta) Update" "There seems to be an issue connecting to the end-point of Microsoft. Check your Internet connection and try again." + exit 3 fi log "DEBUG" "Host is known and reachable. Continuing update to fetch data..." "$log_file" @@ -210,6 +232,7 @@ if [[ $upgradeable -eq 1 ]] ; then script_time="$(($elapsed_time / 60))m $(($elapsed_time % 60))s" echo "Most recent version of Microsoft Edge (Beta) [v$current_version] is already installed on this system, no need to update. Finished in $script_time" log "DEBUG" "Most recent version of Microsoft Edge (Beta) is already installed to the system (v$current_version). Completed in $script_time. Exiting...(1)" "$log_file" + [[ ! $nn_flag -eq 0 ]] && notify "Microsoft Edge (Beta) Update" "There is no newer version of Microsoft Edge (Beta) to install. Newest version is already installed: v$current_version" exit 1 fi @@ -251,6 +274,7 @@ log "DEBUG" "Checking the following release version file end-point is accessible if ! wget --spider "$url" >/dev/null 2>&1 ; then echo "Cannot reach end-point for latest release. Check your Internet connection and try again." log "DEBUG" "Pool end-point is cannot be contacted. Potential Internet connection issue or end-point address ($url). Exiting...(5)" "$log_file" + [[ ! $nn_flag -eq 0 ]] && notify "Microsoft Edge (Beta) Update" "There seems to be an issue connecting to the end-point of Microsoft. Check your Internet connection and try again." exit 5 fi log "DEBUG" "Pool is known and reachable. Beginning download..." "$log_file" @@ -286,6 +310,8 @@ else log "DEBUG" "File already downloaded to system. Skipped download and verifying checksum..." "$log_file" printf "Latest Debian release file is downloaded to the system, skipping download. Validating checksums..." fi +## add the .deb file to garbage list +echo "$tmp_path/$filename" >> "$garbage" ## verify the downloaded file if [[ "$(sha256sum "$tmp_path/$filename" | cut -d' ' -f1)" != "$(grep 'SHA256:.*' "$tmp_path/Release" | cut -d' ' -f2)" ]] ; then @@ -293,6 +319,7 @@ if [[ "$(sha256sum "$tmp_path/$filename" | cut -d' ' -f1)" != "$(grep 'SHA256:.* rm "$tmp_path/$filename" log "DEBUG" "Checksum (SHA256) failed and integrity of file lost. File has been removed as either corrupt or hazardous/dangerous. Exiting...(7)" "$log_file" echo -e "failed.\nThe checksum (SHA256) failed for some reason and removed either because it was corrupt or dangerous. Exiting updater...\n" + [[ ! $nn_flag -eq 0 ]] && notify "Microsoft Edge (Beta) Update" "There was an issue with the checksum to verify the latest release. The Debian file has been automatically removed to prevent potential danger to the system." exit 7 fi echo "complete." @@ -314,6 +341,8 @@ log "DEBUG" "Successfully extracted files from data.tar.gz." "$log_file" echo "completed." ## etc/ directory only contains a cron daily directory, remove it rm -r "$tmp_path/etc/" +## add data.tar.xz to the garbage list +echo "$tmp_path/data.tar.xz" >> "$garbage" # compress archive the currently installed version of Edge (Beta) for restoration on failure ## :@TODO: compress everything on the system for a backup. Remove it if installation of new version was successful @@ -341,6 +370,9 @@ exit_code=$(cp -r "$tmp_path/usr" "/" >>"$log_file" 2>&1) log "DEBUG" "There was an issue copying $tmp_path/usr/ file to system /usr/. Reverting system files and exiting...(9)" "$log_file" ; restore_files && exit 9 ; } log "DEBUG" "Successfully installed files to their appropriate location." "$log_file" echo "installation complete." +## add directories usr/ and opt/ to garbage +echo "$tmp_path/usr" >> "$garbage" +echo "$tmp_path/opt" >> "$garbage" ## confirm the update was successful - try to restore system otherwise ## :@TODO: validate new version has successfully installed properly - exit 12 @@ -355,6 +387,7 @@ if [[ "$(microsoft-edge-beta --version | cut -d' ' -f3)" != "$release_version" ] log "DEBUG" "System restoration was successful, safe to use; however, the update was still failed. Exiting...(11)" "$log_file" echo -e "completed. However, there was still an issue trying to update Microsoft Edge (Beta) to the latest version." \ "Consult $log_file for more information. Exiting..." + [[ ! $nn_flag -eq 0 ]] && notify "Microsoft Edge (Beta) Update" "There was an issue installing the update to your system. The previous version, v$current_version, has been restored." exit 11 fi @@ -362,4 +395,5 @@ fi elapsed_time=$SECONDS script_time="$(($elapsed_time / 60))m $(($elapsed_time % 60))s" log "DEBUG" "Installation and update was successful (completed in: $script_time) and system can be cleaned up to remove any waste." "$log_file" -echo "Microsoft Edge (Beta) has been successfully updated to the latest version: v$release_version, in $script_time." +echo "Microsoft Edge (Beta) has been successfully updated to the latest version: v$current_version -> v$release_version, in $script_time." +[[ ! $nn_flag -eq 0 ]] && notify "Microsoft Edge (Beta) Update" "Successfully updated Microsoft Edge (Beta) to the latest version: v$release_version" From eb1ed051d2eafc38eaed90f1dd713a82f571e4a3 Mon Sep 17 00:00:00 2001 From: TheOnePath Date: Fri, 28 May 2021 18:26:55 +0100 Subject: [PATCH 2/4] Updated common to v0.1.3 Common now contains a notify function which uses notify-send to provide a user with a notification when the function is called. - Function takes 2 inputs, {summary} and {body} which are respectful to the basic arguments for notify-send. - Function returns an issue with required amount of arguments aren't met. - Default arguments are used with notify-send, no other interaction is made possible. Updated backup functions to only log STDERR to file, which files are (de)compressed aren't fundamental to logging information and exact files can be checked appropriately via other means. Fixed bug with relative path being incorrect for operation of updater when sourcing in common. --- utils/common | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/utils/common b/utils/common index 1a5ae5e..07045f7 100755 --- a/utils/common +++ b/utils/common @@ -7,9 +7,9 @@ # # # # # Author: Ethan Smith-Coss # -# Version: 0.1.2 # +# Version: 0.1.3 # # Created: 2021-05-20T16:47+0100 # -# Last Modified: 2021-05-23T23:06+0100 # +# Last Modified: 2021-05-27T15:34+0100 # # # # #################################### # # # @@ -32,7 +32,7 @@ ######################################################################### function log { - local log_out=$(realpath "${0%/*}/../.log.1") + local log_out=$(realpath "${0%/*}/.log.1") [[ $# -eq 0 ]] && log "ERROR" "Log function was called without any arguments. Returning 1." "$log_out" && return 1 [[ ! $# -eq 3 ]] && log "ERROR" "Log function expected at least 3 arguments, recieved $#. Returning 1." "$log_out" && return 1 $(echo "$(date -Iseconds) ($1): $2" >> "$3") >/dev/null 2>&1 @@ -42,24 +42,24 @@ function log { } function archive_system { - local log_out=$(realpath "${0%/*}/../.log.1") + local log_out=$(realpath "${0%/*}/.log.1") [[ -e $1 ]] && log "ERROR" "Archive function was called without any arguments." "$log_out" - local archive_output="$/tmp/microsoft-edge-autoupdater/$(echo $1 | sed 's/\//_/').tar.gz" + local archive_output="/tmp/microsoft-edge-autoupdater/$(echo $1 | sed 's/\//_/').tar.gz" [[ -f "$archive_output" ]] && return 0 - exit_code=$(grep 'usr/.*' "/tmp/microsoft-edge-autoupdater/Contents-amd64" | tar --overwrite -cvzf "$archive_output" "/opt/$1/" >>"$log_out" 2>&1 ) + exit_code=$(grep 'usr/.*' "/tmp/microsoft-edge-autoupdater/Contents-amd64" | tar --overwrite -cvzf "$archive_output" "/opt/$1/" 2>>"$log_out") [[ ! $exit_code -eq 0 ]] && { log "ERROR" "(Archive) There was an issue creating the archive file of system. Returning...(10)" "$log_out" ; return 10 ; } return 0 } function restore_files { - local log_out=$(realpath "${0%/*}/../.log.1") + local log_out=$(realpath "${0%/*}/.log.1") [[ -e $1 ]] && log "ERROR" "Restore function was called without any arguments." "$log_out" - local backup_file="/tmp/microsoft-edge-autoupdater/$(echo $1 | 's/\/_/').tar.gz" + local backup_file="/tmp/microsoft-edge-autoupdater/$(echo $1 | 's/\//_/').tar.gz" [[ -f "$backup_file" ]] && { log "ERROR" "There is no backup of Microsoft Edge (Beta) identified. Restoration not possible." "$log_out" ; return 12 ; } - exit_code=$( tar -xvzf "$backup_file" "/" >>"$log_out" 2>&1) + exit_code=$( tar -xvzf "$backup_file" "/" 2>>"$log_out") [[ ! $exit_code -eq 0 ]] && { log "ERROR" "There was an issue restoring pervious files to system." \ "The backup created will not be removed to allow for manual restoration. Returning...(12)" ; return 12 ; } @@ -68,5 +68,11 @@ function restore_files { function notify { ## :@TODO: implement notification system. + local log_out=$(realpath "${0%/*}/.log.1") + [[ $# -eq 0 ]] && log "ERROR" "Notify function was called without any arguments. Returning 1." "$log_out" && return 1 + [[ ! $# -eq 2 ]] && log "ERROR" "Notify function expected at least 2 arguments, recieved $#. Returning 1." "$log_out" && return 1 + exit_code=$(notify-send "$1" "$2" >>"$log_out" 2>&1) && tput bel + [[ ! $exit_code -eq 0 ]] && log "ERROR" "There was an issue send a notification to the system." "$log_out" + return 0 } From ad955c44a5f2b5656e5035333acf98d1df1ac421 Mon Sep 17 00:00:00 2001 From: TheOnePath Date: Fri, 28 May 2021 18:37:06 +0100 Subject: [PATCH 3/4] Updated README.md to v0.1.3 --- README.md | 11 +- logs/updater.history | 1690 ++++++++++++++++++++++++++++++++++++++++++ logs/updater.log | 63 ++ 3 files changed, 1759 insertions(+), 5 deletions(-) create mode 100644 logs/updater.history create mode 100644 logs/updater.log diff --git a/README.md b/README.md index 042886b..746f44a 100644 --- a/README.md +++ b/README.md @@ -6,20 +6,21 @@ Currently this program can only update the Beta release of Microsoft Edge for am ## Usage ``` Usage: updater [OPTION] -Microsoft Edge Updater (0.1.2) - An updater program which can install the latest available version of Microsoft Edge to non-Debian-based Linux distros. +Microsoft Edge Updater (0.1.3) - An updater program which can install the latest available version of Microsoft Edge to non-Debian-based Linux distros. DISCLAIMER: Currently this program can only update the Beta release of Microsoft Edge for amd64 architectures. Options: - -y, --yes-all Assume yes to all yes/no decisions. - -v, --version Print out the version of the script and exit. - --help Print this help message and exit + -nn, --no-notify Prevent notifications from being set after a session. + -y, --yes-all Assume yes to all yes/no decisions. + -v, --version Print out the version of the script and exit. + -h, --help Print this help message and exit ``` ## Information * Program Name - Microsoft Edge Updater * Script Name - updater -* Version - 0.1.2 (Beta) +* Version - 0.1.3 (Beta) * Synopsis - update Microsoft Edge (Beta) to the latest release. * Author(s) - Ethan Smith-Coss (No contact) * License - No License diff --git a/logs/updater.history b/logs/updater.history new file mode 100644 index 0000000..2ede96e --- /dev/null +++ b/logs/updater.history @@ -0,0 +1,1690 @@ +2021-05-27T17:09:11+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-27T17:09:11+01:00]---- +2021-05-27T17:09:11+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-27T17:09:11+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-27T17:09:11+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-27T17:09:11+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-27T17:09:11+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-27T17:09:11+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-27T17:09:11+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-27 17:09:11-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 40.114.136.21 +Connecting to packages.microsoft.com|40.114.136.21|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4620 (4.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 781M=0s + +2021-05-27 17:09:11 (781 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4620/4620] + +2021-05-27T17:09:11+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-27T17:09:11+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-27 17:09:11-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 40.114.136.21 +Connecting to packages.microsoft.com|40.114.136.21|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 324M=0s + +2021-05-27 17:09:11 (324 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-27T17:09:11+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-27T17:09:11+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-27T17:09:11+01:00 (DEBUG): Successfully uncompressed content. +2021-05-27T17:09:11+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-27T17:09:11+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326084 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.36-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.36-1_amd64.deb + (Release Info) Size: 99691792 + (Release Info) MD5sum: 3ccdd7c37c5902577ee0f72d7f78cd21 + (Release Info) SHA1: efdd9d0f4768d3d96bdca956dc05ef09d5b5873d + (Release Info) SHA256: e21a2c66da3720c7429c57a8cead252052b986dbab149ce30c842072926040e0 + (Release Info) SHA512: cf010900a4d6bc4f08c2f776961b6039b2e640a86d90535b197222520f419773f4431f217d86f9b25f9fc841fa76aacc37de65387aaf97439c64d2b83f1de37e + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-27T17:09:11+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.36) or if most recent version is already installed to the system... +2021-05-27T17:09:11+01:00 (DEBUG): Microsoft Edge (Beta) has been closed, either by yes flag enabled or by user decision. Process may not have been running thus never killed. +2021-05-27T17:09:11+01:00 (DEBUG): Checking the following release version file end-point is accessible (https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.36-1_amd64.deb)... +2021-05-27T17:09:12+01:00 (DEBUG): Pool is known and reachable. Beginning download... +2021-05-27T17:09:12+01:00 (DEBUG): Checking if user wishes to proceed with the update installation... +2021-05-27T17:09:16+01:00 (DEBUG): User opted out for updating from 91.0.864.33 to 91.0.864.36. Exiting...(1) +2021-05-27T17:09:16+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-27T17:09:16+01:00 (CLEANER): Finished cleaning up system after session. Nice and clean :D Goodbye. +2021-05-27T17:09:16+01:00 (END): Total time for script execution was: 0m 5s + +2021-05-27T17:14:42+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-27T17:14:42+01:00]---- +2021-05-27T17:14:42+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-27T17:14:42+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-27T17:14:42+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-27T17:14:42+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-27T17:14:42+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-27T17:14:42+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-27T17:14:42+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-27 17:14:42-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 13.80.99.124 +Connecting to packages.microsoft.com|13.80.99.124|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4620 (4.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 1.31G=0s + +2021-05-27 17:14:42 (1.31 GB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4620/4620] + +2021-05-27T17:14:42+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-27T17:14:42+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-27 17:14:42-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 13.80.99.124 +Connecting to packages.microsoft.com|13.80.99.124|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 389M=0s + +2021-05-27 17:14:43 (389 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-27T17:14:43+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-27T17:14:43+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-27T17:14:43+01:00 (DEBUG): Successfully uncompressed content. +2021-05-27T17:14:43+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-27T17:14:43+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326084 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.36-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.36-1_amd64.deb + (Release Info) Size: 99691792 + (Release Info) MD5sum: 3ccdd7c37c5902577ee0f72d7f78cd21 + (Release Info) SHA1: efdd9d0f4768d3d96bdca956dc05ef09d5b5873d + (Release Info) SHA256: e21a2c66da3720c7429c57a8cead252052b986dbab149ce30c842072926040e0 + (Release Info) SHA512: cf010900a4d6bc4f08c2f776961b6039b2e640a86d90535b197222520f419773f4431f217d86f9b25f9fc841fa76aacc37de65387aaf97439c64d2b83f1de37e + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-27T17:14:43+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.36) or if most recent version is already installed to the system... +2021-05-27T17:14:43+01:00 (DEBUG): Microsoft Edge (Beta) has been closed, either by yes flag enabled or by user decision. Process may not have been running thus never killed. +2021-05-27T17:14:43+01:00 (DEBUG): Checking the following release version file end-point is accessible (https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.36-1_amd64.deb)... +2021-05-27T17:14:43+01:00 (DEBUG): Pool is known and reachable. Beginning download... +2021-05-27T17:14:43+01:00 (DEBUG): Checking if user wishes to proceed with the update installation... +2021-05-27T17:14:44+01:00 (DEBUG): Confirmation has been given to proceed with the following update of Microsoft Edge (Beta) [v91.0.864.36]. +2021-05-27T17:14:44+01:00 (DEBUG): Checking if the file is already downloaded to the system... +2021-05-27T17:14:44+01:00 (DEBUG): File already downloaded to system. Skipped download and verifying checksum... +2021-05-27T17:14:45+01:00 (DEBUG): Unarchiving the downloaded DEB file (/tmp/microsoft-edge-autoupdater/microsoft-edge-beta_91.0.864.36-1_amd64.deb)... +2021-05-27T17:14:45+01:00 (DEBUG): Successfully unarchived microsoft-edge-beta_91.0.864.36-1_amd64.deb, decompressing the data.tar.gz file... +./ +./opt/ +./opt/microsoft/ +./opt/microsoft/msedge-beta/ +./opt/microsoft/msedge-beta/resources.pak +./opt/microsoft/msedge-beta/liboneds.so +./opt/microsoft/msedge-beta/libsmartscreen.so +./opt/microsoft/msedge-beta/msedge_200_percent.pak +./opt/microsoft/msedge-beta/nacl_irt_x86_64.nexe +./opt/microsoft/msedge-beta/libmicrosoft_apis.so +./opt/microsoft/msedge-beta/WidevineCdm/ +./opt/microsoft/msedge-beta/WidevineCdm/_platform_specific/ +./opt/microsoft/msedge-beta/WidevineCdm/_platform_specific/linux_x64/ +./opt/microsoft/msedge-beta/WidevineCdm/_platform_specific/linux_x64/libwidevinecdm.so +./opt/microsoft/msedge-beta/WidevineCdm/manifest.json +./opt/microsoft/msedge-beta/icudtl.dat +./opt/microsoft/msedge-beta/xdg-mime +./opt/microsoft/msedge-beta/swiftshader/ +./opt/microsoft/msedge-beta/swiftshader/libGLESv2.so +./opt/microsoft/msedge-beta/swiftshader/libEGL.so +./opt/microsoft/msedge-beta/msedge-sandbox +./opt/microsoft/msedge-beta/libGLESv2.so +./opt/microsoft/msedge-beta/crashpad_handler +./opt/microsoft/msedge-beta/xdg-settings +./opt/microsoft/msedge-beta/MEIPreload/ +./opt/microsoft/msedge-beta/MEIPreload/preloaded_data.pb +./opt/microsoft/msedge-beta/MEIPreload/manifest.json +./opt/microsoft/msedge-beta/libtelclient.so +./opt/microsoft/msedge-beta/v8_context_snapshot.bin +./opt/microsoft/msedge-beta/locales/ +./opt/microsoft/msedge-beta/locales/kk.pak +./opt/microsoft/msedge-beta/locales/en-US.pak +./opt/microsoft/msedge-beta/locales/hu.pak +./opt/microsoft/msedge-beta/locales/nn.pak +./opt/microsoft/msedge-beta/locales/is.pak +./opt/microsoft/msedge-beta/locales/et.pak +./opt/microsoft/msedge-beta/locales/sq.pak +./opt/microsoft/msedge-beta/locales/zh-CN.pak +./opt/microsoft/msedge-beta/locales/ml.pak +./opt/microsoft/msedge-beta/locales/sr.pak +./opt/microsoft/msedge-beta/locales/te.pak +./opt/microsoft/msedge-beta/locales/ro.pak +./opt/microsoft/msedge-beta/locales/sr-Latn-RS.pak +./opt/microsoft/msedge-beta/locales/lt.pak +./opt/microsoft/msedge-beta/locales/gl.pak +./opt/microsoft/msedge-beta/locales/mr.pak +./opt/microsoft/msedge-beta/locales/vi.pak +./opt/microsoft/msedge-beta/locales/ar.pak +./opt/microsoft/msedge-beta/locales/tt.pak +./opt/microsoft/msedge-beta/locales/hr.pak +./opt/microsoft/msedge-beta/locales/ur.pak +./opt/microsoft/msedge-beta/locales/nb.pak +./opt/microsoft/msedge-beta/locales/kok.pak +./opt/microsoft/msedge-beta/locales/id.pak +./opt/microsoft/msedge-beta/locales/he.pak +./opt/microsoft/msedge-beta/locales/ru.pak +./opt/microsoft/msedge-beta/locales/ko.pak +./opt/microsoft/msedge-beta/locales/ug.pak +./opt/microsoft/msedge-beta/locales/tr.pak +./opt/microsoft/msedge-beta/locales/bg.pak +./opt/microsoft/msedge-beta/locales/el.pak +./opt/microsoft/msedge-beta/locales/sk.pak +./opt/microsoft/msedge-beta/locales/km.pak +./opt/microsoft/msedge-beta/locales/sr-Cyrl-BA.pak +./opt/microsoft/msedge-beta/locales/kn.pak +./opt/microsoft/msedge-beta/locales/mt.pak +./opt/microsoft/msedge-beta/locales/da.pak +./opt/microsoft/msedge-beta/locales/zh-TW.pak +./opt/microsoft/msedge-beta/locales/pt-BR.pak +./opt/microsoft/msedge-beta/locales/ca.pak +./opt/microsoft/msedge-beta/locales/es.pak +./opt/microsoft/msedge-beta/locales/it.pak +./opt/microsoft/msedge-beta/locales/cy.pak +./opt/microsoft/msedge-beta/locales/th.pak +./opt/microsoft/msedge-beta/locales/fr-CA.pak +./opt/microsoft/msedge-beta/locales/ka.pak +./opt/microsoft/msedge-beta/locales/az.pak +./opt/microsoft/msedge-beta/locales/mk.pak +./opt/microsoft/msedge-beta/locales/am.pak +./opt/microsoft/msedge-beta/locales/fa.pak +./opt/microsoft/msedge-beta/locales/de.pak +./opt/microsoft/msedge-beta/locales/hi.pak +./opt/microsoft/msedge-beta/locales/fil.pak +./opt/microsoft/msedge-beta/locales/as.pak +./opt/microsoft/msedge-beta/locales/af.pak +./opt/microsoft/msedge-beta/locales/ja.pak +./opt/microsoft/msedge-beta/locales/sv.pak +./opt/microsoft/msedge-beta/locales/pl.pak +./opt/microsoft/msedge-beta/locales/pt-PT.pak +./opt/microsoft/msedge-beta/locales/gd.pak +./opt/microsoft/msedge-beta/locales/eu.pak +./opt/microsoft/msedge-beta/locales/cs.pak +./opt/microsoft/msedge-beta/locales/fi.pak +./opt/microsoft/msedge-beta/locales/uk.pak +./opt/microsoft/msedge-beta/locales/ms.pak +./opt/microsoft/msedge-beta/locales/en-GB.pak +./opt/microsoft/msedge-beta/locales/bn-IN.pak +./opt/microsoft/msedge-beta/locales/lb.pak +./opt/microsoft/msedge-beta/locales/or.pak +./opt/microsoft/msedge-beta/locales/gu.pak +./opt/microsoft/msedge-beta/locales/ca-Es-VALENCIA.pak +./opt/microsoft/msedge-beta/locales/mi.pak +./opt/microsoft/msedge-beta/locales/qu.pak +./opt/microsoft/msedge-beta/locales/bs.pak +./opt/microsoft/msedge-beta/locales/ta.pak +./opt/microsoft/msedge-beta/locales/lv.pak +./opt/microsoft/msedge-beta/locales/lo.pak +./opt/microsoft/msedge-beta/locales/pa.pak +./opt/microsoft/msedge-beta/locales/ne.pak +./opt/microsoft/msedge-beta/locales/sl.pak +./opt/microsoft/msedge-beta/locales/nl.pak +./opt/microsoft/msedge-beta/locales/ga.pak +./opt/microsoft/msedge-beta/locales/fr.pak +./opt/microsoft/msedge-beta/locales/es-419.pak +./opt/microsoft/msedge-beta/libEGL.so +./opt/microsoft/msedge-beta/cron/ +./opt/microsoft/msedge-beta/cron/microsoft-edge-beta +./opt/microsoft/msedge-beta/product_logo_16_beta.png +./opt/microsoft/msedge-beta/msedge_100_percent.pak +./opt/microsoft/msedge-beta/product_logo_64_beta.png +./opt/microsoft/msedge-beta/product_logo_24_beta.png +./opt/microsoft/msedge-beta/nacl_helper +./opt/microsoft/msedge-beta/microsoft-edge-beta +./opt/microsoft/msedge-beta/msedge +./opt/microsoft/msedge-beta/libwns_push_client.so +./opt/microsoft/msedge-beta/default-app-block +./opt/microsoft/msedge-beta/product_logo_128_beta.png +./opt/microsoft/msedge-beta/product_logo_48_beta.png +./opt/microsoft/msedge-beta/liblearning_tools.so +./opt/microsoft/msedge-beta/liboneauth.so +./opt/microsoft/msedge-beta/product_logo_32_beta.xpm +./opt/microsoft/msedge-beta/product_logo_256_beta.png +./opt/microsoft/msedge-beta/nacl_helper_bootstrap +./opt/microsoft/msedge-beta/product_logo_32_beta.png +./opt/microsoft/msedge-beta/libvk_swiftshader.so +./opt/microsoft/msedge-beta/vk_swiftshader_icd.json +./usr/ +./usr/share/ +./usr/share/applications/ +./usr/share/applications/microsoft-edge-beta.desktop +./usr/share/doc/ +./usr/share/doc/microsoft-edge-beta/ +./usr/share/doc/microsoft-edge-beta/changelog.gz +./usr/share/menu/ +./usr/share/menu/microsoft-edge-beta.menu +./usr/share/appdata/ +./usr/share/appdata/microsoft-edge-beta.appdata.xml +./usr/share/gnome-control-center/ +./usr/share/gnome-control-center/default-apps/ +./usr/share/gnome-control-center/default-apps/microsoft-edge-beta.xml +./usr/share/man/ +./usr/share/man/man1/ +./usr/share/man/man1/microsoft-edge-beta.1.gz +./usr/bin/ +./etc/ +./etc/cron.daily/ +./opt/microsoft/msedge-beta/microsoft-edge +./usr/bin/microsoft-edge-beta +./etc/cron.daily/microsoft-edge-beta +2021-05-27T17:14:52+01:00 (DEBUG): Successfully extracted files from data.tar.gz. +2021-05-27T17:14:52+01:00 (DEBUG): Creating an archive gzip tarball of system /opt/ and /usr/ directories... +2021-05-27T17:15:09+01:00 (DEBUG): Successfully created an archive gzip tarball of the system. Safe to continue with installation. +2021-05-27T17:15:09+01:00 (DEBUG): Copying files to there appropriate location... +cp: cannot remove '/opt/microsoft/msedge-beta/microsoft-edge': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/vk_swiftshader_icd.json': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/libvk_swiftshader.so': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/product_logo_32_beta.png': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/nacl_helper_bootstrap': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/product_logo_256_beta.png': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/product_logo_32_beta.xpm': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/liboneauth.so': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/liblearning_tools.so': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/product_logo_48_beta.png': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/product_logo_128_beta.png': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/default-app-block': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/libwns_push_client.so': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/msedge': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/microsoft-edge-beta': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/nacl_helper': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/product_logo_24_beta.png': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/product_logo_64_beta.png': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/msedge_100_percent.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/product_logo_16_beta.png': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/cron/microsoft-edge-beta': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/libEGL.so': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/es-419.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/fr.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/ga.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/nl.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/sl.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/ne.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/pa.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/lo.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/lv.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/ta.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/bs.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/qu.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/mi.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/ca-Es-VALENCIA.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/gu.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/or.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/lb.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/bn-IN.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/en-GB.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/ms.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/uk.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/fi.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/cs.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/eu.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/gd.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/pt-PT.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/pl.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/sv.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/ja.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/af.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/as.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/fil.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/hi.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/de.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/fa.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/am.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/mk.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/az.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/ka.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/fr-CA.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/th.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/cy.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/it.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/es.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/ca.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/pt-BR.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/zh-TW.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/da.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/mt.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/kn.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/sr-Cyrl-BA.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/km.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/sk.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/el.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/bg.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/tr.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/ug.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/ko.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/ru.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/he.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/id.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/kok.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/nb.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/ur.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/hr.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/tt.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/ar.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/vi.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/mr.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/gl.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/lt.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/sr-Latn-RS.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/ro.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/te.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/sr.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/ml.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/zh-CN.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/sq.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/et.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/is.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/nn.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/hu.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/en-US.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/locales/kk.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/v8_context_snapshot.bin': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/libtelclient.so': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/MEIPreload/manifest.json': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/MEIPreload/preloaded_data.pb': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/xdg-settings': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/crashpad_handler': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/libGLESv2.so': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/msedge-sandbox': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/swiftshader/libEGL.so': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/swiftshader/libGLESv2.so': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/xdg-mime': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/icudtl.dat': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/WidevineCdm/manifest.json': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/WidevineCdm/_platform_specific/linux_x64/libwidevinecdm.so': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/libmicrosoft_apis.so': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/nacl_irt_x86_64.nexe': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/msedge_200_percent.pak': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/libsmartscreen.so': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/liboneds.so': Permission denied +cp: cannot create regular file '/opt/microsoft/msedge-beta/resources.pak': Permission denied +cp: cannot remove '/usr/bin/microsoft-edge-beta': Permission denied +cp: cannot create regular file '/usr/share/man/man1/microsoft-edge-beta.1.gz': Permission denied +cp: cannot create regular file '/usr/share/gnome-control-center/default-apps/microsoft-edge-beta.xml': Permission denied +cp: cannot create regular file '/usr/share/appdata/microsoft-edge-beta.appdata.xml': Permission denied +cp: cannot create regular file '/usr/share/menu/microsoft-edge-beta.menu': Permission denied +cp: cannot create regular file '/usr/share/doc/microsoft-edge-beta/changelog.gz': Permission denied +cp: cannot create regular file '/usr/share/applications/microsoft-edge-beta.desktop': Permission denied +2021-05-27T17:15:09+01:00 (DEBUG): Successfully installed files to their appropriate location. +2021-05-27T17:15:09+01:00 (ERROR): There was an issue with the update and installation. Restoring to previous version... +2021-05-27T17:15:09+01:00 (DEBUG): System restoration was successful, safe to use; however, the update was still failed. Exiting...(11) +2021-05-27T17:15:09+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-27T17:15:09+01:00 (CLEANER): Finished cleaning up system after session. Nice and clean :D Goodbye. +2021-05-27T17:15:09+01:00 (END): Total time for script execution was: 0m 27s + +2021-05-27T17:30:27+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-27T17:30:27+01:00]---- +2021-05-27T17:30:27+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-27T17:30:27+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-27T17:30:27+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-27T17:30:27+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-27T17:30:27+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-27T17:30:27+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-27T17:30:27+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-27 17:30:27-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 104.214.230.139 +Connecting to packages.microsoft.com|104.214.230.139|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4620 (4.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 1.01G=0s + +2021-05-27 17:30:27 (1.01 GB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4620/4620] + +2021-05-27T17:30:28+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-27T17:30:28+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-27 17:30:28-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 104.214.230.139 +Connecting to packages.microsoft.com|104.214.230.139|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 350M=0s + +2021-05-27 17:30:28 (350 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-27T17:30:28+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-27T17:30:28+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-27T17:30:28+01:00 (DEBUG): Successfully uncompressed content. +2021-05-27T17:30:28+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-27T17:30:28+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326084 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.36-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.36-1_amd64.deb + (Release Info) Size: 99691792 + (Release Info) MD5sum: 3ccdd7c37c5902577ee0f72d7f78cd21 + (Release Info) SHA1: efdd9d0f4768d3d96bdca956dc05ef09d5b5873d + (Release Info) SHA256: e21a2c66da3720c7429c57a8cead252052b986dbab149ce30c842072926040e0 + (Release Info) SHA512: cf010900a4d6bc4f08c2f776961b6039b2e640a86d90535b197222520f419773f4431f217d86f9b25f9fc841fa76aacc37de65387aaf97439c64d2b83f1de37e + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-27T17:30:28+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.36) or if most recent version is already installed to the system... +2021-05-27T17:30:28+01:00 (DEBUG): Microsoft Edge (Beta) has been closed, either by yes flag enabled or by user decision. Process may not have been running thus never killed. +2021-05-27T17:30:28+01:00 (DEBUG): Checking the following release version file end-point is accessible (https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.36-1_amd64.deb)... +2021-05-27T17:30:28+01:00 (DEBUG): Pool is known and reachable. Beginning download... +2021-05-27T17:30:28+01:00 (DEBUG): Checking if user wishes to proceed with the update installation... +2021-05-27T17:30:31+01:00 (DEBUG): User opted out for updating from 91.0.864.33 to 91.0.864.36. Exiting...(1) +2021-05-27T17:30:31+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-27T17:30:31+01:00 (CLEANER): Finished cleaning up system after session. Nice and clean :D Goodbye. +2021-05-27T17:30:31+01:00 (END): Total time for script execution was: 0m 4s + +2021-05-27T17:30:45+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-27T17:30:45+01:00]---- +2021-05-27T17:30:45+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-27T17:30:45+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-27T17:30:45+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-27T17:30:45+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-27T17:30:45+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-27T17:30:45+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-27T17:30:45+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-27 17:30:45-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 104.214.230.139 +Connecting to packages.microsoft.com|104.214.230.139|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4620 (4.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 1.17G=0s + +2021-05-27 17:30:46 (1.17 GB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4620/4620] + +2021-05-27T17:30:46+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-27T17:30:46+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-27 17:30:46-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 104.214.230.139 +Connecting to packages.microsoft.com|104.214.230.139|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 420M=0s + +2021-05-27 17:30:46 (420 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-27T17:30:46+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-27T17:30:46+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-27T17:30:46+01:00 (DEBUG): Successfully uncompressed content. +2021-05-27T17:30:46+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-27T17:30:46+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326084 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.36-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.36-1_amd64.deb + (Release Info) Size: 99691792 + (Release Info) MD5sum: 3ccdd7c37c5902577ee0f72d7f78cd21 + (Release Info) SHA1: efdd9d0f4768d3d96bdca956dc05ef09d5b5873d + (Release Info) SHA256: e21a2c66da3720c7429c57a8cead252052b986dbab149ce30c842072926040e0 + (Release Info) SHA512: cf010900a4d6bc4f08c2f776961b6039b2e640a86d90535b197222520f419773f4431f217d86f9b25f9fc841fa76aacc37de65387aaf97439c64d2b83f1de37e + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-27T17:30:46+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.36) or if most recent version is already installed to the system... +2021-05-27T17:30:46+01:00 (DEBUG): Microsoft Edge (Beta) has been closed, either by yes flag enabled or by user decision. Process may not have been running thus never killed. +2021-05-27T17:30:46+01:00 (DEBUG): Checking the following release version file end-point is accessible (https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.36-1_amd64.deb)... +2021-05-27T17:30:46+01:00 (DEBUG): Pool is known and reachable. Beginning download... +2021-05-27T17:30:46+01:00 (DEBUG): Checking if user wishes to proceed with the update installation... +2021-05-27T17:30:47+01:00 (DEBUG): User opted out for updating from 91.0.864.33 to 91.0.864.36. Exiting...(1) +2021-05-27T17:30:47+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-27T17:30:47+01:00 (CLEANER): Finished cleaning up system after session. Nice and clean :D Goodbye. +2021-05-27T17:30:47+01:00 (END): Total time for script execution was: 0m 2s + +2021-05-27T20:55:52+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-27T20:55:52+01:00]---- +2021-05-27T20:55:52+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-27T20:55:52+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-27T20:55:52+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-27T20:55:52+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-27T20:55:52+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-27T20:55:53+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-27T20:55:53+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-27 20:55:53-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 13.80.99.124 +Connecting to packages.microsoft.com|13.80.99.124|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4798 (4.7K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 1.01G=0s + +2021-05-27 20:55:53 (1.01 GB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4798/4798] + +2021-05-27T20:55:53+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-27T20:55:53+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-27 20:55:53-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 13.80.99.124 +Connecting to packages.microsoft.com|13.80.99.124|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 827M=0s + +2021-05-27 20:55:53 (827 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-27T20:55:53+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-27T20:55:53+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-27T20:55:54+01:00 (DEBUG): Successfully uncompressed content. +2021-05-27T20:55:54+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-27T20:55:54+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326085 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.37-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb + (Release Info) Size: 99670130 + (Release Info) MD5sum: 5357f4fc3dfed43dfb9f83e167448b5b + (Release Info) SHA1: 48411a8dab4004158845acbb60511747ea554117 + (Release Info) SHA256: 1bf9cd3e6cb6d6ed7917a24035c574f2aecfc1b43544aceb9a56c2c51b4db922 + (Release Info) SHA512: 4b3f57e26dd1d47f0ec55f3209d4d650e27e205cc83a80632cd4440b0d8525fe294951d52a392aae5c9e06346a3953cc8676545025117e9bc8b1a6cbde378c22 + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-27T20:55:54+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.37) or if most recent version is already installed to the system... +2021-05-27T20:55:54+01:00 (DEBUG): Microsoft Edge (Beta) has been closed, either by yes flag enabled or by user decision. Process may not have been running thus never killed. +2021-05-27T20:55:54+01:00 (DEBUG): Checking the following release version file end-point is accessible (https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb)... +2021-05-27T20:55:54+01:00 (DEBUG): Pool is known and reachable. Beginning download... +2021-05-27T20:55:54+01:00 (DEBUG): Checking if user wishes to proceed with the update installation... +2021-05-27T20:56:15+01:00 (DEBUG): Confirmation has been given to proceed with the following update of Microsoft Edge (Beta) [v91.0.864.37]. +2021-05-27T20:56:15+01:00 (DEBUG): Checking if the file is already downloaded to the system... +2021-05-27T20:56:15+01:00 (DEBUG): Downloading the latest release version [v91.0.864.37], file: microsoft-edge-beta_91.0.864.37-1_amd64.deb (URL: https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb) +--2021-05-27 20:56:15-- https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb +Resolving packages.microsoft.com... 104.214.230.139 +Connecting to packages.microsoft.com|104.214.230.139|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 99670130 (95M) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/microsoft-edge-beta_91.0.864.37-1_amd64.deb’ + +2021-05-27T20:56:41+01:00 (DEBUG): Download completed successfully in 0:25.98s, wget log below. +2021-05-27T20:56:41+01:00 (DEBUG): Unarchiving the downloaded DEB file (/tmp/microsoft-edge-autoupdater/microsoft-edge-beta_91.0.864.37-1_amd64.deb)... +2021-05-27T20:56:42+01:00 (DEBUG): Successfully unarchived microsoft-edge-beta_91.0.864.37-1_amd64.deb, decompressing the data.tar.gz file... +./ +./opt/ +./opt/microsoft/ +./opt/microsoft/msedge-beta/ +./opt/microsoft/msedge-beta/resources.pak +./opt/microsoft/msedge-beta/liboneds.so +./opt/microsoft/msedge-beta/libsmartscreen.so +./opt/microsoft/msedge-beta/msedge_200_percent.pak +./opt/microsoft/msedge-beta/nacl_irt_x86_64.nexe +./opt/microsoft/msedge-beta/libmicrosoft_apis.so +./opt/microsoft/msedge-beta/WidevineCdm/ +./opt/microsoft/msedge-beta/WidevineCdm/_platform_specific/ +./opt/microsoft/msedge-beta/WidevineCdm/_platform_specific/linux_x64/ +./opt/microsoft/msedge-beta/WidevineCdm/_platform_specific/linux_x64/libwidevinecdm.so +./opt/microsoft/msedge-beta/WidevineCdm/manifest.json +./opt/microsoft/msedge-beta/icudtl.dat +./opt/microsoft/msedge-beta/xdg-mime +./opt/microsoft/msedge-beta/swiftshader/ +./opt/microsoft/msedge-beta/swiftshader/libGLESv2.so +./opt/microsoft/msedge-beta/swiftshader/libEGL.so +./opt/microsoft/msedge-beta/msedge-sandbox +./opt/microsoft/msedge-beta/libGLESv2.so +./opt/microsoft/msedge-beta/crashpad_handler +./opt/microsoft/msedge-beta/xdg-settings +./opt/microsoft/msedge-beta/MEIPreload/ +./opt/microsoft/msedge-beta/MEIPreload/preloaded_data.pb +./opt/microsoft/msedge-beta/MEIPreload/manifest.json +./opt/microsoft/msedge-beta/libtelclient.so +./opt/microsoft/msedge-beta/v8_context_snapshot.bin +./opt/microsoft/msedge-beta/locales/ +./opt/microsoft/msedge-beta/locales/kk.pak +./opt/microsoft/msedge-beta/locales/en-US.pak +./opt/microsoft/msedge-beta/locales/hu.pak +./opt/microsoft/msedge-beta/locales/nn.pak +./opt/microsoft/msedge-beta/locales/is.pak +./opt/microsoft/msedge-beta/locales/et.pak +./opt/microsoft/msedge-beta/locales/sq.pak +./opt/microsoft/msedge-beta/locales/zh-CN.pak +./opt/microsoft/msedge-beta/locales/ml.pak +./opt/microsoft/msedge-beta/locales/sr.pak +./opt/microsoft/msedge-beta/locales/te.pak +./opt/microsoft/msedge-beta/locales/ro.pak +./opt/microsoft/msedge-beta/locales/sr-Latn-RS.pak +./opt/microsoft/msedge-beta/locales/lt.pak +./opt/microsoft/msedge-beta/locales/gl.pak +./opt/microsoft/msedge-beta/locales/mr.pak +./opt/microsoft/msedge-beta/locales/vi.pak +./opt/microsoft/msedge-beta/locales/ar.pak +./opt/microsoft/msedge-beta/locales/tt.pak +./opt/microsoft/msedge-beta/locales/hr.pak +./opt/microsoft/msedge-beta/locales/ur.pak +./opt/microsoft/msedge-beta/locales/nb.pak +./opt/microsoft/msedge-beta/locales/kok.pak +./opt/microsoft/msedge-beta/locales/id.pak +./opt/microsoft/msedge-beta/locales/he.pak +./opt/microsoft/msedge-beta/locales/ru.pak +./opt/microsoft/msedge-beta/locales/ko.pak +./opt/microsoft/msedge-beta/locales/ug.pak +./opt/microsoft/msedge-beta/locales/tr.pak +./opt/microsoft/msedge-beta/locales/bg.pak +./opt/microsoft/msedge-beta/locales/el.pak +./opt/microsoft/msedge-beta/locales/sk.pak +./opt/microsoft/msedge-beta/locales/km.pak +./opt/microsoft/msedge-beta/locales/sr-Cyrl-BA.pak +./opt/microsoft/msedge-beta/locales/kn.pak +./opt/microsoft/msedge-beta/locales/mt.pak +./opt/microsoft/msedge-beta/locales/da.pak +./opt/microsoft/msedge-beta/locales/zh-TW.pak +./opt/microsoft/msedge-beta/locales/pt-BR.pak +./opt/microsoft/msedge-beta/locales/ca.pak +./opt/microsoft/msedge-beta/locales/es.pak +./opt/microsoft/msedge-beta/locales/it.pak +./opt/microsoft/msedge-beta/locales/cy.pak +./opt/microsoft/msedge-beta/locales/th.pak +./opt/microsoft/msedge-beta/locales/fr-CA.pak +./opt/microsoft/msedge-beta/locales/ka.pak +./opt/microsoft/msedge-beta/locales/az.pak +./opt/microsoft/msedge-beta/locales/mk.pak +./opt/microsoft/msedge-beta/locales/am.pak +./opt/microsoft/msedge-beta/locales/fa.pak +./opt/microsoft/msedge-beta/locales/de.pak +./opt/microsoft/msedge-beta/locales/hi.pak +./opt/microsoft/msedge-beta/locales/fil.pak +./opt/microsoft/msedge-beta/locales/as.pak +./opt/microsoft/msedge-beta/locales/af.pak +./opt/microsoft/msedge-beta/locales/ja.pak +./opt/microsoft/msedge-beta/locales/sv.pak +./opt/microsoft/msedge-beta/locales/pl.pak +./opt/microsoft/msedge-beta/locales/pt-PT.pak +./opt/microsoft/msedge-beta/locales/gd.pak +./opt/microsoft/msedge-beta/locales/eu.pak +./opt/microsoft/msedge-beta/locales/cs.pak +./opt/microsoft/msedge-beta/locales/fi.pak +./opt/microsoft/msedge-beta/locales/uk.pak +./opt/microsoft/msedge-beta/locales/ms.pak +./opt/microsoft/msedge-beta/locales/en-GB.pak +./opt/microsoft/msedge-beta/locales/bn-IN.pak +./opt/microsoft/msedge-beta/locales/lb.pak +./opt/microsoft/msedge-beta/locales/or.pak +./opt/microsoft/msedge-beta/locales/gu.pak +./opt/microsoft/msedge-beta/locales/ca-Es-VALENCIA.pak +./opt/microsoft/msedge-beta/locales/mi.pak +./opt/microsoft/msedge-beta/locales/qu.pak +./opt/microsoft/msedge-beta/locales/bs.pak +./opt/microsoft/msedge-beta/locales/ta.pak +./opt/microsoft/msedge-beta/locales/lv.pak +./opt/microsoft/msedge-beta/locales/lo.pak +./opt/microsoft/msedge-beta/locales/pa.pak +./opt/microsoft/msedge-beta/locales/ne.pak +./opt/microsoft/msedge-beta/locales/sl.pak +./opt/microsoft/msedge-beta/locales/nl.pak +./opt/microsoft/msedge-beta/locales/ga.pak +./opt/microsoft/msedge-beta/locales/fr.pak +./opt/microsoft/msedge-beta/locales/es-419.pak +./opt/microsoft/msedge-beta/libEGL.so +./opt/microsoft/msedge-beta/cron/ +./opt/microsoft/msedge-beta/cron/microsoft-edge-beta +./opt/microsoft/msedge-beta/product_logo_16_beta.png +./opt/microsoft/msedge-beta/msedge_100_percent.pak +./opt/microsoft/msedge-beta/product_logo_64_beta.png +./opt/microsoft/msedge-beta/product_logo_24_beta.png +./opt/microsoft/msedge-beta/nacl_helper +./opt/microsoft/msedge-beta/microsoft-edge-beta +./opt/microsoft/msedge-beta/msedge +./opt/microsoft/msedge-beta/libwns_push_client.so +./opt/microsoft/msedge-beta/default-app-block +./opt/microsoft/msedge-beta/product_logo_128_beta.png +./opt/microsoft/msedge-beta/product_logo_48_beta.png +./opt/microsoft/msedge-beta/liblearning_tools.so +./opt/microsoft/msedge-beta/liboneauth.so +./opt/microsoft/msedge-beta/product_logo_32_beta.xpm +./opt/microsoft/msedge-beta/product_logo_256_beta.png +./opt/microsoft/msedge-beta/nacl_helper_bootstrap +./opt/microsoft/msedge-beta/product_logo_32_beta.png +./opt/microsoft/msedge-beta/libvk_swiftshader.so +./opt/microsoft/msedge-beta/vk_swiftshader_icd.json +./usr/ +./usr/share/ +./usr/share/applications/ +./usr/share/applications/microsoft-edge-beta.desktop +./usr/share/doc/ +./usr/share/doc/microsoft-edge-beta/ +./usr/share/doc/microsoft-edge-beta/changelog.gz +./usr/share/menu/ +./usr/share/menu/microsoft-edge-beta.menu +./usr/share/appdata/ +./usr/share/appdata/microsoft-edge-beta.appdata.xml +./usr/share/gnome-control-center/ +./usr/share/gnome-control-center/default-apps/ +./usr/share/gnome-control-center/default-apps/microsoft-edge-beta.xml +./usr/share/man/ +./usr/share/man/man1/ +./usr/share/man/man1/microsoft-edge-beta.1.gz +./usr/bin/ +./etc/ +./etc/cron.daily/ +./opt/microsoft/msedge-beta/microsoft-edge +./usr/bin/microsoft-edge-beta +./etc/cron.daily/microsoft-edge-beta +2021-05-27T20:56:48+01:00 (DEBUG): Successfully extracted files from data.tar.gz. +2021-05-27T20:56:48+01:00 (DEBUG): Creating an archive gzip tarball of system /opt/ and /usr/ directories... +2021-05-27T20:57:06+01:00 (DEBUG): Successfully created an archive gzip tarball of the system. Safe to continue with installation. +2021-05-27T20:57:06+01:00 (DEBUG): Copying files to there appropriate location... +2021-05-27T20:57:07+01:00 (DEBUG): Successfully installed files to their appropriate location. +2021-05-27T20:57:07+01:00 (DEBUG): Installation and update was successful (completed in: 1m 15s) and system can be cleaned up to remove any waste. +2021-05-27T20:57:07+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-27T20:57:07+01:00 (CLEANER): Finished cleaning up system after session. Nice and clean :D Goodbye. +2021-05-27T20:57:07+01:00 (END): Total time for script execution was: 1m 15s + +2021-05-27T21:22:22+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-27T21:22:22+01:00]---- +2021-05-27T21:22:22+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-27T21:22:22+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-27T21:22:22+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-27T21:22:22+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-27T21:22:22+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-27T21:22:23+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-27T21:22:23+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-27 21:22:23-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 13.80.99.124 +Connecting to packages.microsoft.com|13.80.99.124|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4798 (4.7K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 1.70G=0s + +2021-05-27 21:22:23 (1.70 GB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4798/4798] + +2021-05-27T21:22:23+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-27T21:22:23+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-27 21:22:23-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 13.80.99.124 +Connecting to packages.microsoft.com|13.80.99.124|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 408M=0s + +2021-05-27 21:22:23 (408 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-27T21:22:23+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-27T21:22:23+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-27T21:22:23+01:00 (DEBUG): Successfully uncompressed content. +2021-05-27T21:22:23+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-27T21:22:23+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326085 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.37-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb + (Release Info) Size: 99670130 + (Release Info) MD5sum: 5357f4fc3dfed43dfb9f83e167448b5b + (Release Info) SHA1: 48411a8dab4004158845acbb60511747ea554117 + (Release Info) SHA256: 1bf9cd3e6cb6d6ed7917a24035c574f2aecfc1b43544aceb9a56c2c51b4db922 + (Release Info) SHA512: 4b3f57e26dd1d47f0ec55f3209d4d650e27e205cc83a80632cd4440b0d8525fe294951d52a392aae5c9e06346a3953cc8676545025117e9bc8b1a6cbde378c22 + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-27T21:22:23+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.37) or if most recent version is already installed to the system... +2021-05-27T21:22:23+01:00 (DEBUG): Most recent version of Microsoft Edge (Beta) is already installed to the system (v91.0.864.37). Completed in 0m 1s. Exiting...(1) +2021-05-27T21:22:23+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-27T21:22:23+01:00 (CLEANER): Finished cleaning up system after session. Nice and clean :D Goodbye. +2021-05-27T21:22:23+01:00 (END): Total time for script execution was: 0m 1s + +2021-05-27T21:23:37+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-27T21:23:37+01:00]---- +2021-05-27T21:23:37+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-27T21:23:37+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-27T21:23:37+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-27T21:23:37+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-27T21:23:37+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-27T21:23:38+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-27T21:23:38+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-27 21:23:38-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 104.214.230.139 +Connecting to packages.microsoft.com|104.214.230.139|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4798 (4.7K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 619M=0s + +2021-05-27 21:23:38 (619 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4798/4798] + +2021-05-27T21:23:38+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-27T21:23:38+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-27 21:23:38-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 104.214.230.139 +Connecting to packages.microsoft.com|104.214.230.139|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 458M=0s + +2021-05-27 21:23:38 (458 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-27T21:23:38+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-27T21:23:38+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-27T21:23:38+01:00 (DEBUG): Successfully uncompressed content. +2021-05-27T21:23:38+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-27T21:23:38+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326085 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.37-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb + (Release Info) Size: 99670130 + (Release Info) MD5sum: 5357f4fc3dfed43dfb9f83e167448b5b + (Release Info) SHA1: 48411a8dab4004158845acbb60511747ea554117 + (Release Info) SHA256: 1bf9cd3e6cb6d6ed7917a24035c574f2aecfc1b43544aceb9a56c2c51b4db922 + (Release Info) SHA512: 4b3f57e26dd1d47f0ec55f3209d4d650e27e205cc83a80632cd4440b0d8525fe294951d52a392aae5c9e06346a3953cc8676545025117e9bc8b1a6cbde378c22 + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-27T21:23:38+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.37) or if most recent version is already installed to the system... +2021-05-27T21:23:38+01:00 (DEBUG): Most recent version of Microsoft Edge (Beta) is already installed to the system (v91.0.864.37). Completed in 0m 1s. Exiting...(1) +2021-05-27T21:23:39+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-27T21:23:39+01:00 (CLEANER): Finished cleaning up system after session. Nice and clean :D Goodbye. +2021-05-27T21:23:39+01:00 (END): Total time for script execution was: 0m 2s + +2021-05-27T21:28:34+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-27T21:28:34+01:00]---- +2021-05-27T21:28:34+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-27T21:28:34+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-27T21:28:34+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-27T21:28:34+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-27T21:28:34+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-27T21:28:34+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-27T21:28:34+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-27 21:28:34-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 40.114.136.21 +Connecting to packages.microsoft.com|40.114.136.21|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4798 (4.7K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 1.43G=0s + +2021-05-27 21:28:34 (1.43 GB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4798/4798] + +2021-05-27T21:28:34+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-27T21:28:34+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-27 21:28:34-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 40.114.136.21 +Connecting to packages.microsoft.com|40.114.136.21|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 538M=0s + +2021-05-27 21:28:35 (538 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-27T21:28:35+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-27T21:28:35+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-27T21:28:35+01:00 (DEBUG): Successfully uncompressed content. +2021-05-27T21:28:35+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-27T21:28:35+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326085 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.37-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb + (Release Info) Size: 99670130 + (Release Info) MD5sum: 5357f4fc3dfed43dfb9f83e167448b5b + (Release Info) SHA1: 48411a8dab4004158845acbb60511747ea554117 + (Release Info) SHA256: 1bf9cd3e6cb6d6ed7917a24035c574f2aecfc1b43544aceb9a56c2c51b4db922 + (Release Info) SHA512: 4b3f57e26dd1d47f0ec55f3209d4d650e27e205cc83a80632cd4440b0d8525fe294951d52a392aae5c9e06346a3953cc8676545025117e9bc8b1a6cbde378c22 + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-27T21:28:35+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.37) or if most recent version is already installed to the system... +2021-05-27T21:28:35+01:00 (DEBUG): Most recent version of Microsoft Edge (Beta) is already installed to the system (v91.0.864.37). Completed in 0m 1s. Exiting...(1) +2021-05-27T21:28:35+01:00 (ERROR): There was an issue send a notification to the system. +2021-05-27T21:28:35+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-27T21:28:35+01:00 (CLEANER): Finished cleaning up system after session. Nice and clean :D Goodbye. +2021-05-27T21:28:35+01:00 (END): Total time for script execution was: 0m 1s + +2021-05-27T21:32:06+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-27T21:32:06+01:00]---- +2021-05-27T21:32:06+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-27T21:32:06+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-27T21:32:06+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-27T21:32:06+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-27T21:32:06+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-27T21:32:07+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-27T21:32:07+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-27 21:32:07-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 104.214.230.139 +Connecting to packages.microsoft.com|104.214.230.139|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4798 (4.7K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 1.08G=0s + +2021-05-27 21:32:07 (1.08 GB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4798/4798] + +2021-05-27T21:32:07+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-27T21:32:07+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-27 21:32:07-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 104.214.230.139 +Connecting to packages.microsoft.com|104.214.230.139|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 479M=0s + +2021-05-27 21:32:07 (479 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-27T21:32:07+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-27T21:32:07+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-27T21:32:07+01:00 (DEBUG): Successfully uncompressed content. +2021-05-27T21:32:07+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-27T21:32:07+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326085 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.37-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb + (Release Info) Size: 99670130 + (Release Info) MD5sum: 5357f4fc3dfed43dfb9f83e167448b5b + (Release Info) SHA1: 48411a8dab4004158845acbb60511747ea554117 + (Release Info) SHA256: 1bf9cd3e6cb6d6ed7917a24035c574f2aecfc1b43544aceb9a56c2c51b4db922 + (Release Info) SHA512: 4b3f57e26dd1d47f0ec55f3209d4d650e27e205cc83a80632cd4440b0d8525fe294951d52a392aae5c9e06346a3953cc8676545025117e9bc8b1a6cbde378c22 + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-27T21:32:07+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.37) or if most recent version is already installed to the system... +2021-05-27T21:32:07+01:00 (DEBUG): Most recent version of Microsoft Edge (Beta) is already installed to the system (v91.0.864.37). Completed in 0m 1s. Exiting...(1) +2021-05-27T21:32:07+01:00 (ERROR): There was an issue send a notification to the system. +2021-05-27T21:32:07+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-27T21:32:07+01:00 (CLEANER): Finished cleaning up system after session. Nice and clean :D Goodbye. +2021-05-27T21:32:07+01:00 (END): Total time for script execution was: 0m 1s + +2021-05-27T21:35:12+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-27T21:35:12+01:00]---- +2021-05-27T21:35:12+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-27T21:35:12+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-27T21:35:12+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-27T21:35:12+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-27T21:35:12+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-27T21:35:12+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-27T21:35:12+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-27 21:35:12-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 13.80.99.124 +Connecting to packages.microsoft.com|13.80.99.124|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4798 (4.7K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 1.11G=0s + +2021-05-27 21:35:13 (1.11 GB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4798/4798] + +2021-05-27T21:35:13+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-27T21:35:13+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-27 21:35:13-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 13.80.99.124 +Connecting to packages.microsoft.com|13.80.99.124|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 454M=0s + +2021-05-27 21:35:13 (454 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-27T21:35:13+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-27T21:35:13+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-27T21:35:13+01:00 (DEBUG): Successfully uncompressed content. +2021-05-27T21:35:13+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-27T21:35:13+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326085 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.37-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb + (Release Info) Size: 99670130 + (Release Info) MD5sum: 5357f4fc3dfed43dfb9f83e167448b5b + (Release Info) SHA1: 48411a8dab4004158845acbb60511747ea554117 + (Release Info) SHA256: 1bf9cd3e6cb6d6ed7917a24035c574f2aecfc1b43544aceb9a56c2c51b4db922 + (Release Info) SHA512: 4b3f57e26dd1d47f0ec55f3209d4d650e27e205cc83a80632cd4440b0d8525fe294951d52a392aae5c9e06346a3953cc8676545025117e9bc8b1a6cbde378c22 + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-27T21:35:13+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.37) or if most recent version is already installed to the system... +2021-05-27T21:35:13+01:00 (DEBUG): Most recent version of Microsoft Edge (Beta) is already installed to the system (v91.0.864.37). Completed in 0m 1s. Exiting...(1) +2021-05-27T21:35:13+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-27T21:35:13+01:00 (CLEANER): Finished cleaning up system after session. Nice and clean :D Goodbye. +2021-05-27T21:35:13+01:00 (END): Total time for script execution was: 0m 1s + +2021-05-27T21:35:40+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-27T21:35:40+01:00]---- +2021-05-27T21:35:40+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-27T21:35:40+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-27T21:35:40+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-27T21:35:40+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-27T21:35:40+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-27T21:35:40+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-27T21:35:40+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-27 21:35:40-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 13.80.99.124 +Connecting to packages.microsoft.com|13.80.99.124|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4798 (4.7K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 1.63G=0s + +2021-05-27 21:35:40 (1.63 GB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4798/4798] + +2021-05-27T21:35:40+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-27T21:35:40+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-27 21:35:40-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 40.114.136.21 +Connecting to packages.microsoft.com|40.114.136.21|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 1.01G=0s + +2021-05-27 21:35:40 (1.01 GB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-27T21:35:40+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-27T21:35:40+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-27T21:35:40+01:00 (DEBUG): Successfully uncompressed content. +2021-05-27T21:35:40+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-27T21:35:40+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326085 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.37-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb + (Release Info) Size: 99670130 + (Release Info) MD5sum: 5357f4fc3dfed43dfb9f83e167448b5b + (Release Info) SHA1: 48411a8dab4004158845acbb60511747ea554117 + (Release Info) SHA256: 1bf9cd3e6cb6d6ed7917a24035c574f2aecfc1b43544aceb9a56c2c51b4db922 + (Release Info) SHA512: 4b3f57e26dd1d47f0ec55f3209d4d650e27e205cc83a80632cd4440b0d8525fe294951d52a392aae5c9e06346a3953cc8676545025117e9bc8b1a6cbde378c22 + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-27T21:35:40+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.37) or if most recent version is already installed to the system... +2021-05-27T21:35:40+01:00 (DEBUG): Most recent version of Microsoft Edge (Beta) is already installed to the system (v91.0.864.37). Completed in 0m 0s. Exiting...(1) +2021-05-27T21:35:40+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-27T21:35:40+01:00 (CLEANER): Finished cleaning up system after session. Nice and clean :D Goodbye. +2021-05-27T21:35:40+01:00 (END): Total time for script execution was: 0m 0s + +2021-05-27T21:35:57+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-27T21:35:57+01:00]---- +2021-05-27T21:35:57+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-27T21:35:57+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-27T21:35:57+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-27T21:35:57+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-27T21:35:57+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-27T21:35:57+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-27T21:35:57+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-27 21:35:57-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 104.214.230.139 +Connecting to packages.microsoft.com|104.214.230.139|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4798 (4.7K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 1.38G=0s + +2021-05-27 21:35:57 (1.38 GB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4798/4798] + +2021-05-27T21:35:57+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-27T21:35:57+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-27 21:35:57-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 104.214.230.139 +Connecting to packages.microsoft.com|104.214.230.139|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 593M=0s + +2021-05-27 21:35:57 (593 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-27T21:35:57+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-27T21:35:57+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-27T21:35:57+01:00 (DEBUG): Successfully uncompressed content. +2021-05-27T21:35:57+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-27T21:35:57+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326085 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.37-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb + (Release Info) Size: 99670130 + (Release Info) MD5sum: 5357f4fc3dfed43dfb9f83e167448b5b + (Release Info) SHA1: 48411a8dab4004158845acbb60511747ea554117 + (Release Info) SHA256: 1bf9cd3e6cb6d6ed7917a24035c574f2aecfc1b43544aceb9a56c2c51b4db922 + (Release Info) SHA512: 4b3f57e26dd1d47f0ec55f3209d4d650e27e205cc83a80632cd4440b0d8525fe294951d52a392aae5c9e06346a3953cc8676545025117e9bc8b1a6cbde378c22 + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-27T21:35:57+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.37) or if most recent version is already installed to the system... +2021-05-27T21:35:57+01:00 (DEBUG): Most recent version of Microsoft Edge (Beta) is already installed to the system (v91.0.864.37). Completed in 0m 0s. Exiting...(1) +2021-05-27T21:35:57+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-27T21:35:57+01:00 (CLEANER): Finished cleaning up system after session. Nice and clean :D Goodbye. +2021-05-27T21:35:57+01:00 (END): Total time for script execution was: 0m 0s + +2021-05-28T15:07:35+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-28T15:07:35+01:00]---- +2021-05-28T15:07:35+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-28T15:07:35+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-28T15:07:35+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-28T15:07:35+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-28T15:07:35+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-28T15:07:35+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-28T15:07:35+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-28 15:07:35-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 40.114.136.21 +Connecting to packages.microsoft.com|40.114.136.21|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4798 (4.7K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 995M=0s + +2021-05-28 15:07:35 (995 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4798/4798] + +2021-05-28T15:07:35+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-28T15:07:35+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-28 15:07:35-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 40.114.136.21 +Connecting to packages.microsoft.com|40.114.136.21|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 447M=0s + +2021-05-28 15:07:35 (447 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-28T15:07:35+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-28T15:07:35+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-28T15:07:35+01:00 (DEBUG): Successfully uncompressed content. +2021-05-28T15:07:35+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-28T15:07:35+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326085 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.37-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb + (Release Info) Size: 99670130 + (Release Info) MD5sum: 5357f4fc3dfed43dfb9f83e167448b5b + (Release Info) SHA1: 48411a8dab4004158845acbb60511747ea554117 + (Release Info) SHA256: 1bf9cd3e6cb6d6ed7917a24035c574f2aecfc1b43544aceb9a56c2c51b4db922 + (Release Info) SHA512: 4b3f57e26dd1d47f0ec55f3209d4d650e27e205cc83a80632cd4440b0d8525fe294951d52a392aae5c9e06346a3953cc8676545025117e9bc8b1a6cbde378c22 + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-28T15:07:35+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.37) or if most recent version is already installed to the system... +2021-05-28T15:07:35+01:00 (DEBUG): Most recent version of Microsoft Edge (Beta) is already installed to the system (v91.0.864.37). Completed in 0m 0s. Exiting...(1) +2021-05-28T15:07:36+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-28T15:07:36+01:00 (CLEANER): Finished cleaning up system after session. Nice and clean :D Goodbye. +2021-05-28T15:07:36+01:00 (END): Total time for script execution was: 0m 1s + +2021-05-28T15:07:35+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-28T15:07:35+01:00]---- +2021-05-28T15:07:35+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-28T15:07:35+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-28T15:07:35+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-28T15:07:35+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-28T15:07:35+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-28T15:07:35+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-28T15:07:35+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-28 15:07:35-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 40.114.136.21 +Connecting to packages.microsoft.com|40.114.136.21|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4798 (4.7K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 995M=0s + +2021-05-28 15:07:35 (995 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4798/4798] + +2021-05-28T15:07:35+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-28T15:07:35+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-28 15:07:35-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 40.114.136.21 +Connecting to packages.microsoft.com|40.114.136.21|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 447M=0s + +2021-05-28 15:07:35 (447 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-28T15:07:35+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-28T15:07:35+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-28T15:07:35+01:00 (DEBUG): Successfully uncompressed content. +2021-05-28T15:07:35+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-28T15:07:35+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326085 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.37-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb + (Release Info) Size: 99670130 + (Release Info) MD5sum: 5357f4fc3dfed43dfb9f83e167448b5b + (Release Info) SHA1: 48411a8dab4004158845acbb60511747ea554117 + (Release Info) SHA256: 1bf9cd3e6cb6d6ed7917a24035c574f2aecfc1b43544aceb9a56c2c51b4db922 + (Release Info) SHA512: 4b3f57e26dd1d47f0ec55f3209d4d650e27e205cc83a80632cd4440b0d8525fe294951d52a392aae5c9e06346a3953cc8676545025117e9bc8b1a6cbde378c22 + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-28T15:07:35+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.37) or if most recent version is already installed to the system... +2021-05-28T15:07:35+01:00 (DEBUG): Most recent version of Microsoft Edge (Beta) is already installed to the system (v91.0.864.37). Completed in 0m 0s. Exiting...(1) +2021-05-28T15:07:36+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-28T15:07:50+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-28T15:07:50+01:00]---- +2021-05-28T15:07:50+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-28T15:07:50+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-28T15:07:50+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-28T15:07:50+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-28T15:07:50+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-28T15:07:50+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-28T15:07:50+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-28 15:07:50-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 40.114.136.21 +Connecting to packages.microsoft.com|40.114.136.21|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4798 (4.7K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 1.04G=0s + +2021-05-28 15:07:51 (1.04 GB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4798/4798] + +2021-05-28T15:07:51+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-28T15:07:51+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-28 15:07:51-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 40.114.136.21 +Connecting to packages.microsoft.com|40.114.136.21|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 365M=0s + +2021-05-28 15:07:51 (365 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-28T15:07:51+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-28T15:07:51+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-28T15:07:51+01:00 (DEBUG): Successfully uncompressed content. +2021-05-28T15:07:51+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-28T15:07:51+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326085 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.37-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb + (Release Info) Size: 99670130 + (Release Info) MD5sum: 5357f4fc3dfed43dfb9f83e167448b5b + (Release Info) SHA1: 48411a8dab4004158845acbb60511747ea554117 + (Release Info) SHA256: 1bf9cd3e6cb6d6ed7917a24035c574f2aecfc1b43544aceb9a56c2c51b4db922 + (Release Info) SHA512: 4b3f57e26dd1d47f0ec55f3209d4d650e27e205cc83a80632cd4440b0d8525fe294951d52a392aae5c9e06346a3953cc8676545025117e9bc8b1a6cbde378c22 + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-28T15:07:51+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.37) or if most recent version is already installed to the system... +2021-05-28T15:07:51+01:00 (DEBUG): Most recent version of Microsoft Edge (Beta) is already installed to the system (v91.0.864.37). Completed in 0m 1s. Exiting...(1) +2021-05-28T15:07:51+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-28T15:07:51+01:00 (CLEANER): Finished cleaning up system after session. Nice and clean :D Goodbye. +2021-05-28T15:07:51+01:00 (END): Total time for script execution was: 0m 1s + +2021-05-28T15:07:35+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-28T15:07:35+01:00]---- +2021-05-28T15:07:35+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-28T15:07:35+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-28T15:07:35+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-28T15:07:35+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-28T15:07:35+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-28T15:07:35+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-28T15:07:35+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-28 15:07:35-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 40.114.136.21 +Connecting to packages.microsoft.com|40.114.136.21|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4798 (4.7K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 995M=0s + +2021-05-28 15:07:35 (995 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4798/4798] + +2021-05-28T15:07:35+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-28T15:07:35+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-28 15:07:35-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 40.114.136.21 +Connecting to packages.microsoft.com|40.114.136.21|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 447M=0s + +2021-05-28 15:07:35 (447 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-28T15:07:35+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-28T15:07:35+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-28T15:07:35+01:00 (DEBUG): Successfully uncompressed content. +2021-05-28T15:07:35+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-28T15:07:35+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326085 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.37-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb + (Release Info) Size: 99670130 + (Release Info) MD5sum: 5357f4fc3dfed43dfb9f83e167448b5b + (Release Info) SHA1: 48411a8dab4004158845acbb60511747ea554117 + (Release Info) SHA256: 1bf9cd3e6cb6d6ed7917a24035c574f2aecfc1b43544aceb9a56c2c51b4db922 + (Release Info) SHA512: 4b3f57e26dd1d47f0ec55f3209d4d650e27e205cc83a80632cd4440b0d8525fe294951d52a392aae5c9e06346a3953cc8676545025117e9bc8b1a6cbde378c22 + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-28T15:07:35+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.37) or if most recent version is already installed to the system... +2021-05-28T15:07:35+01:00 (DEBUG): Most recent version of Microsoft Edge (Beta) is already installed to the system (v91.0.864.37). Completed in 0m 0s. Exiting...(1) +2021-05-28T15:07:36+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-28T15:07:50+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-28T15:07:50+01:00]---- +2021-05-28T15:07:50+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-28T15:07:50+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-28T15:07:50+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-28T15:07:50+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-28T15:07:50+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-28T15:07:50+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-28T15:07:50+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-28 15:07:50-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 40.114.136.21 +Connecting to packages.microsoft.com|40.114.136.21|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4798 (4.7K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 1.04G=0s + +2021-05-28 15:07:51 (1.04 GB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4798/4798] + +2021-05-28T15:07:51+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-28T15:07:51+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-28 15:07:51-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 40.114.136.21 +Connecting to packages.microsoft.com|40.114.136.21|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 365M=0s + +2021-05-28 15:07:51 (365 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-28T15:07:51+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-28T15:07:51+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-28T15:07:51+01:00 (DEBUG): Successfully uncompressed content. +2021-05-28T15:07:51+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-28T15:07:51+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326085 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.37-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb + (Release Info) Size: 99670130 + (Release Info) MD5sum: 5357f4fc3dfed43dfb9f83e167448b5b + (Release Info) SHA1: 48411a8dab4004158845acbb60511747ea554117 + (Release Info) SHA256: 1bf9cd3e6cb6d6ed7917a24035c574f2aecfc1b43544aceb9a56c2c51b4db922 + (Release Info) SHA512: 4b3f57e26dd1d47f0ec55f3209d4d650e27e205cc83a80632cd4440b0d8525fe294951d52a392aae5c9e06346a3953cc8676545025117e9bc8b1a6cbde378c22 + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-28T15:07:51+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.37) or if most recent version is already installed to the system... +2021-05-28T15:07:51+01:00 (DEBUG): Most recent version of Microsoft Edge (Beta) is already installed to the system (v91.0.864.37). Completed in 0m 1s. Exiting...(1) +2021-05-28T15:07:51+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-28T15:09:33+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-28T15:09:33+01:00]---- +2021-05-28T15:09:33+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-28T15:09:33+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-28T15:09:33+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-28T15:09:33+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-28T15:09:33+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-28T15:09:33+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-28T15:09:33+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-28 15:09:33-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 104.214.230.139 +Connecting to packages.microsoft.com|104.214.230.139|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4798 (4.7K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 1.48G=0s + +2021-05-28 15:09:33 (1.48 GB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4798/4798] + +2021-05-28T15:09:33+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-28T15:09:33+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-28 15:09:33-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 104.214.230.139 +Connecting to packages.microsoft.com|104.214.230.139|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 425M=0s + +2021-05-28 15:09:33 (425 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-28T15:09:33+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-28T15:09:33+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-28T15:09:33+01:00 (DEBUG): Successfully uncompressed content. +2021-05-28T15:09:33+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-28T15:09:33+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326085 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.37-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb + (Release Info) Size: 99670130 + (Release Info) MD5sum: 5357f4fc3dfed43dfb9f83e167448b5b + (Release Info) SHA1: 48411a8dab4004158845acbb60511747ea554117 + (Release Info) SHA256: 1bf9cd3e6cb6d6ed7917a24035c574f2aecfc1b43544aceb9a56c2c51b4db922 + (Release Info) SHA512: 4b3f57e26dd1d47f0ec55f3209d4d650e27e205cc83a80632cd4440b0d8525fe294951d52a392aae5c9e06346a3953cc8676545025117e9bc8b1a6cbde378c22 + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-28T15:09:33+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.37) or if most recent version is already installed to the system... +2021-05-28T15:09:33+01:00 (DEBUG): Most recent version of Microsoft Edge (Beta) is already installed to the system (v91.0.864.37). Completed in 0m 0s. Exiting...(1) +2021-05-28T15:09:33+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-28T15:09:33+01:00 (CLEANER): Finished cleaning up system after session. Nice and clean :D Goodbye. +2021-05-28T15:09:33+01:00 (END): Total time for script execution was: 0m 0s + +2021-05-28T15:09:46+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-28T15:09:46+01:00]---- +2021-05-28T15:09:46+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-28T15:09:46+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-28T15:09:46+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-28T15:09:46+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-28T15:09:46+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-28T15:09:46+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-28T15:09:46+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-28 15:09:46-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 13.80.99.124 +Connecting to packages.microsoft.com|13.80.99.124|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4798 (4.7K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 978M=0s + +2021-05-28 15:09:46 (978 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4798/4798] + +2021-05-28T15:09:46+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-28T15:09:46+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-28 15:09:46-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 13.80.99.124 +Connecting to packages.microsoft.com|13.80.99.124|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 522M=0s + +2021-05-28 15:09:46 (522 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-28T15:09:46+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-28T15:09:46+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-28T15:09:46+01:00 (DEBUG): Successfully uncompressed content. +2021-05-28T15:09:46+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-28T15:09:46+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326085 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.37-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb + (Release Info) Size: 99670130 + (Release Info) MD5sum: 5357f4fc3dfed43dfb9f83e167448b5b + (Release Info) SHA1: 48411a8dab4004158845acbb60511747ea554117 + (Release Info) SHA256: 1bf9cd3e6cb6d6ed7917a24035c574f2aecfc1b43544aceb9a56c2c51b4db922 + (Release Info) SHA512: 4b3f57e26dd1d47f0ec55f3209d4d650e27e205cc83a80632cd4440b0d8525fe294951d52a392aae5c9e06346a3953cc8676545025117e9bc8b1a6cbde378c22 + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-28T15:09:46+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.37) or if most recent version is already installed to the system... +2021-05-28T15:09:46+01:00 (DEBUG): Most recent version of Microsoft Edge (Beta) is already installed to the system (v91.0.864.37). Completed in 0m 0s. Exiting...(1) +2021-05-28T15:09:46+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-28T15:09:46+01:00 (CLEANER): Finished cleaning up system after session. Nice and clean :D Goodbye. +2021-05-28T15:09:46+01:00 (END): Total time for script execution was: 0m 0s + diff --git a/logs/updater.log b/logs/updater.log new file mode 100644 index 0000000..07999f7 --- /dev/null +++ b/logs/updater.log @@ -0,0 +1,63 @@ +2021-05-28T15:09:46+01:00 (PREINIT): ----[New instance of script has been started: 2021-05-28T15:09:46+01:00]---- +2021-05-28T15:09:46+01:00 (DEBUG): The yes flag has been set to: 1. +2021-05-28T15:09:46+01:00 (DEBUG): Microsoft Edge (Beta) is installed to system. Proceeding with update... +2021-05-28T15:09:46+01:00 (DEBUG): Checking for a source.list in current runtime directory... +2021-05-28T15:09:46+01:00 (DEBUG): Found a souce.list in /home/ethan/.local/bin/Microsoft-Edge-Updater. +2021-05-28T15:09:46+01:00 (DEBUG): Checking if host is available according to defined value of [host]: https://packages.microsoft.com... +2021-05-28T15:09:46+01:00 (DEBUG): Host is known and reachable. Continuing update to fetch data... +2021-05-28T15:09:46+01:00 (DEBUG): Fetching Packages file from https://packages.microsoft.com/repos/edge/dists/stable/main for amd64 architectures... +--2021-05-28 15:09:46-- https://packages.microsoft.com/repos/edge/dists/stable/main/binary-amd64/Packages.gz +Resolving packages.microsoft.com... 13.80.99.124 +Connecting to packages.microsoft.com|13.80.99.124|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 4798 (4.7K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ + + 0K .... 100% 978M=0s + +2021-05-28 15:09:46 (978 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Packages.gz’ saved [4798/4798] + +2021-05-28T15:09:46+01:00 (DEBUG): Successfully downloaded release package information. +2021-05-28T15:09:46+01:00 (DEBUG): Fetching Contents-amd64.gz from https://packages.microsoft.com/repos/edge/dists/stable/ +--2021-05-28 15:09:46-- https://packages.microsoft.com/repos/edge/dists/stable//Contents-amd64.gz +Resolving packages.microsoft.com... 13.80.99.124 +Connecting to packages.microsoft.com|13.80.99.124|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 1521 (1.5K) [application/octet-stream] +Saving to: ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ + + 0K . 100% 522M=0s + +2021-05-28 15:09:46 (522 MB/s) - ‘/tmp/microsoft-edge-autoupdater/Contents-amd64.gz’ saved [1521/1521] + +2021-05-28T15:09:46+01:00 (DEBUG): Successfully downloaded release contents information. +2021-05-28T15:09:46+01:00 (DEBUG): Uncompressing downloaded gz file using gunzip, /tmp/microsoft-edge-autoupdater/Packages.gz... +2021-05-28T15:09:46+01:00 (DEBUG): Successfully uncompressed content. +2021-05-28T15:09:46+01:00 (DEBUG): Identifying the most recent package information from Packages catelogue... +2021-05-28T15:09:46+01:00 (DEBUG): Extrapolated most recent package information entry from /tmp/microsoft-edge-autoupdater/Release. Package information selected is as below: + (Release Info) Package: microsoft-edge-beta + (Release Info) Priority: optional + (Release Info) Section: web + (Release Info) Installed-Size: 326085 + (Release Info) Maintainer: Microsoft Edge for Linux Team + (Release Info) Architecture: amd64 + (Release Info) Version: 91.0.864.37-1 + (Release Info) Provides: www-browser + (Release Info) Depends: ca-certificates, fonts-liberation, libasound2 (>= 1.0.16), libatk-bridge2.0-0 (>= 2.5.3), libatk1.0-0 (>= 2.2.0), libatomic1 (>= 4.8), libatspi2.0-0 (>= 2.9.90), libc6 (>= 2.17), libcairo2 (>= 1.6.0), libcups2 (>= 1.4.0), libcurl3-gnutls | libcurl3-nss | libcurl4 | libcurl3, libdbus-1-3 (>= 1.5.12), libdrm2 (>= 2.4.38), libexpat1 (>= 2.0.1), libgbm1 (>= 8.1~0), libgcc1 (>= 1:3.0), libglib2.0-0 (>= 2.39.4), libgtk-3-0 (>= 3.9.10), libnspr4 (>= 2:4.9-2~), libnss3 (>= 2:3.22), libpango-1.0-0 (>= 1.14.0), libuuid1 (>= 2.16), libx11-6 (>= 2:1.4.99.1), libxcb1 (>= 1.9.2), libxcomposite1 (>= 1:0.4.4-1), libxdamage1 (>= 1:1.1), libxext6, libxfixes3, libxkbcommon0 (>= 0.4.1), libxrandr2, libxshmfence1, wget, xdg-utils (>= 1.0.2) + (Release Info) Pre-Depends: dpkg (>= 1.14.0) + (Release Info) Recommends: libu2f-udev, libvulkan1 + (Release Info) Filename: pool/main/m/microsoft-edge-beta/microsoft-edge-beta_91.0.864.37-1_amd64.deb + (Release Info) Size: 99670130 + (Release Info) MD5sum: 5357f4fc3dfed43dfb9f83e167448b5b + (Release Info) SHA1: 48411a8dab4004158845acbb60511747ea554117 + (Release Info) SHA256: 1bf9cd3e6cb6d6ed7917a24035c574f2aecfc1b43544aceb9a56c2c51b4db922 + (Release Info) SHA512: 4b3f57e26dd1d47f0ec55f3209d4d650e27e205cc83a80632cd4440b0d8525fe294951d52a392aae5c9e06346a3953cc8676545025117e9bc8b1a6cbde378c22 + (Release Info) Description: The web browser from Microsoft + (Release Info) Microsoft Edge is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. + (Release Info) (END) +2021-05-28T15:09:46+01:00 (DEBUG): Checking if there is an update available (release: 91.0.864.37) or if most recent version is already installed to the system... +2021-05-28T15:09:46+01:00 (DEBUG): Most recent version of Microsoft Edge (Beta) is already installed to the system (v91.0.864.37). Completed in 0m 0s. Exiting...(1) +2021-05-28T15:09:46+01:00 (DEBUG): EXIT signal was raised, cleaning up system after session before exiting... +2021-05-28T15:09:46+01:00 (CLEANER): Finished cleaning up system after session. Nice and clean :D Goodbye. +2021-05-28T15:09:46+01:00 (END): Total time for script execution was: 0m 0s + From 9665f610a5f8b0424a574ff7f9270b98a8b25ae0 Mon Sep 17 00:00:00 2001 From: TheOnePath Date: Fri, 28 May 2021 18:39:18 +0100 Subject: [PATCH 4/4] Updated README.md to reflect license --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 746f44a..171c5c0 100644 --- a/README.md +++ b/README.md @@ -23,4 +23,4 @@ Options: * Version - 0.1.3 (Beta) * Synopsis - update Microsoft Edge (Beta) to the latest release. * Author(s) - Ethan Smith-Coss (No contact) -* License - No License +* License - GNU GPLv3+