diff -Nru dell-linux-assistant-2.2.0544/apt.source/somerville-dla-team-ubuntu-ppa-bionic.list dell-linux-assistant-2.2.0548/apt.source/somerville-dla-team-ubuntu-ppa-bionic.list --- dell-linux-assistant-2.2.0544/apt.source/somerville-dla-team-ubuntu-ppa-bionic.list 2020-05-28 13:18:09.000000000 +0000 +++ dell-linux-assistant-2.2.0548/apt.source/somerville-dla-team-ubuntu-ppa-bionic.list 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -deb http://ppa.launchpad.net/somerville-dla-team/ppa/ubuntu bionic main -# deb-src http://ppa.launchpad.net/somerville-dla-team/ppa/ubuntu bionic main -# deb-src http://ppa.launchpad.net/somerville-dla-team/ppa/ubuntu bionic main diff -Nru dell-linux-assistant-2.2.0544/apt.source/somerville-dla-team-ubuntu-ppa-focal.list dell-linux-assistant-2.2.0548/apt.source/somerville-dla-team-ubuntu-ppa-focal.list --- dell-linux-assistant-2.2.0544/apt.source/somerville-dla-team-ubuntu-ppa-focal.list 1970-01-01 00:00:00.000000000 +0000 +++ dell-linux-assistant-2.2.0548/apt.source/somerville-dla-team-ubuntu-ppa-focal.list 2020-11-17 08:21:03.000000000 +0000 @@ -0,0 +1,2 @@ +deb http://ppa.launchpad.net/somerville-dla-team/ppa/ubuntu focal main +# deb-src http://ppa.launchpad.net/somerville-dla-team/ppa/ubuntu focal main diff -Nru dell-linux-assistant-2.2.0544/debian/changelog dell-linux-assistant-2.2.0548/debian/changelog --- dell-linux-assistant-2.2.0544/debian/changelog 2020-10-29 12:19:52.000000000 +0000 +++ dell-linux-assistant-2.2.0548/debian/changelog 2020-11-17 09:06:00.000000000 +0000 @@ -1,8 +1,14 @@ -dell-linux-assistant (2.2.0544) focal; urgency=medium +dell-linux-assistant (2.2.0548) focal; urgency=medium + + * Update apt source list for Ubuntu 20.04 + + -- Vincent Hu Tue, 29 Nov 2020 17:04:15 +0800 + +dell-linux-assistant (2.2.0545) focal; urgency=medium * Update package build/runtime depends - -- Vincent Hu Thu, 29 Oct 2020 20:19:52 +0800 + -- Vincent Hu Thu, 29 Oct 2020 20:19:51 +0800 dell-linux-assistant (2.2.0538) focal; urgency=medium diff -Nru dell-linux-assistant-2.2.0544/debian/control dell-linux-assistant-2.2.0548/debian/control --- dell-linux-assistant-2.2.0544/debian/control 2020-10-29 12:19:52.000000000 +0000 +++ dell-linux-assistant-2.2.0548/debian/control 2020-11-17 08:35:25.000000000 +0000 @@ -2,7 +2,7 @@ Section: utils Priority: optional Maintainer: Vincent Hu -Build-Depends: debhelper (>=9),python3-all,python3-distutils-extra,python3-dbus,libcurl4-gnutls-dev (>=7.58.0-2ubuntu3),libssl1.1 (>=1.1.1f-1ubuntu2),libc6-dev,manpages-dev +Build-Depends: debhelper (>=9),python3-all,python3-distutils-extra,python3-dbus,libcurl4-gnutls-dev (>=7.58.0-2ubuntu3),libssl1.1 (>=1.1.1f-1ubuntu2),libc6-dev,manpages-dev,dh-python X-Python3-Version: >= 3.2 Standards-Version: 3.9.6 #Vcs-Git: git://anonscm.debian.org/collab-maint/summerpalace-develop.git diff -Nru dell-linux-assistant-2.2.0544/DellLinuxAssistant/homepage/homepage_js_handler.py dell-linux-assistant-2.2.0548/DellLinuxAssistant/homepage/homepage_js_handler.py --- dell-linux-assistant-2.2.0544/DellLinuxAssistant/homepage/homepage_js_handler.py 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/DellLinuxAssistant/homepage/homepage_js_handler.py 2020-11-17 08:03:24.000000000 +0000 @@ -132,4 +132,7 @@ :return: application version detail e.g. "v 2.2.01" """ version_num = check_version() + # method check_version will return exact version number or 'unknown' + if version_num == 'unknown': + return version_num return version_num[0:-2] diff -Nru dell-linux-assistant-2.2.0544/DellLinuxAssistant/main_window.py dell-linux-assistant-2.2.0548/DellLinuxAssistant/main_window.py --- dell-linux-assistant-2.2.0544/DellLinuxAssistant/main_window.py 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/DellLinuxAssistant/main_window.py 2020-11-17 08:22:48.000000000 +0000 @@ -56,8 +56,7 @@ self.setupUi() self.mode = mode - self.env = 'dev' - #self.env = 'production' + self.env = 'production' # init dbus handler and web view self.dbus_handler = DbusHandler() diff -Nru dell-linux-assistant-2.2.0544/DellLinuxAssistant/sysinfo/sys_info_js_handler.py dell-linux-assistant-2.2.0548/DellLinuxAssistant/sysinfo/sys_info_js_handler.py --- dell-linux-assistant-2.2.0544/DellLinuxAssistant/sysinfo/sys_info_js_handler.py 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/DellLinuxAssistant/sysinfo/sys_info_js_handler.py 2020-11-17 08:03:24.000000000 +0000 @@ -135,4 +135,7 @@ :return: application version detail e.g. "v 2.2.01" """ version_num = check_version() + # method check_version will return exact version number or 'unknown' + if version_num == 'unknown': + return version_num return version_num[0:-2] diff -Nru dell-linux-assistant-2.2.0544/dell-linux-assistant-registration-notify dell-linux-assistant-2.2.0548/dell-linux-assistant-registration-notify --- dell-linux-assistant-2.2.0544/dell-linux-assistant-registration-notify 2020-08-25 11:16:16.000000000 +0000 +++ dell-linux-assistant-2.2.0548/dell-linux-assistant-registration-notify 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -#!/usr/bin/env python3 -# coding: utf-8 - -from DellLinuxAssistant.registration.utils.RegistrationReminder import RegistrationReminder - - -if __name__ == '__main__': - reg_reminder = RegistrationReminder() - reg_reminder.notify() diff -Nru dell-linux-assistant-2.2.0544/deploy.sh dell-linux-assistant-2.2.0548/deploy.sh --- dell-linux-assistant-2.2.0544/deploy.sh 2020-05-28 13:19:30.000000000 +0000 +++ dell-linux-assistant-2.2.0548/deploy.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -#!/bin/sh - -# This script is for develop use only which will re-build and re-install the package in local machine - -# This script will uninstall the local installed package, cleanup local build, -# re-build the package, re-install the package and start the backend service - -echo "Start building and deploying Dell Linux Assistant in local machine" - -# remove the existed package in the parent directory -echo "Cleanup local package file ..." -sudo rm ../dell-linux-assistant*.buildinfo -sudo rm ../dell-linux-assistant*.changes -sudo rm ../dell-linux-assistant*.deb -sudo rm ../dell-linux-assistant*.dsc -sudo rm ../dell-linux-assistant*.tar.gz -sudo rm ../dell-linux-assistant*.ddeb - -# uninstall the local installed package -echo "Removing the local installed package ..." -sudo dpkg -r dell-linux-assistant -sudo dpkg --purge dell-linux-assistant - -echo "Building package ..." -dpkg-buildpackage -us -uc -d - -echo "Parsing current package version ..." -version=`dpkg-parsechangelog --show-field Version` - -echo "Installing the package ..." -sudo dpkg -i ../dell-linux-assistant_${version}_amd64.deb - -echo "Starting backend service ..." -sudo /usr/bin/dell-linux-assistantd diff -Nru dell-linux-assistant-2.2.0544/.git/COMMIT_EDITMSG dell-linux-assistant-2.2.0548/.git/COMMIT_EDITMSG --- dell-linux-assistant-2.2.0544/.git/COMMIT_EDITMSG 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/COMMIT_EDITMSG 2020-11-17 08:56:02.000000000 +0000 @@ -1 +1 @@ -DTSP-100: merge all features of supporting commercial platforms on 20.04 as well, Update changelog about distribution to Focal +update apt source file on MANIFEST, add dh-python for build dependes on PPA diff -Nru dell-linux-assistant-2.2.0544/.git/config dell-linux-assistant-2.2.0548/.git/config --- dell-linux-assistant-2.2.0544/.git/config 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/config 2020-11-17 08:02:55.000000000 +0000 @@ -9,9 +9,6 @@ [branch "master"] remote = origin merge = refs/heads/master -[branch "release/production-bionic"] - remote = origin - merge = refs/heads/release/production-bionic [branch "release/production-focal"] remote = origin merge = refs/heads/release/production-focal diff -Nru dell-linux-assistant-2.2.0544/.git/FETCH_HEAD dell-linux-assistant-2.2.0548/.git/FETCH_HEAD --- dell-linux-assistant-2.2.0544/.git/FETCH_HEAD 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/FETCH_HEAD 2020-11-17 08:00:52.000000000 +0000 @@ -1,4 +1,5 @@ -25b60448bf3dd5317b8ca1222af7daa224e75a27 branch 'release/production-focal' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 +1da4f8f36c57714abe9a338104f5f651c3cd5a9f branch 'master' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 +3b4ffb16b6502b80010cce68ca2c871106e0fdd5 not-for-merge branch 'bugfix/depends_fix' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 ed9eee9d8993fa338d35c7bb61d92f174e0900fb not-for-merge branch 'bugfix/rc-2.1' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 2d7d68137f3353a3f4755709fd2a9e1ea07adef5 not-for-merge branch 'bugfix/rc_2.2.0438' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 a704c5932587b41117bf2d8136b96e1417ccecf9 not-for-merge branch 'feature/commercial_expansion' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 @@ -16,11 +17,9 @@ e195616c2321da88993bd1ff337c52ca11f321ee not-for-merge branch 'hackathon' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 174be81a86d1f01c7daa8bd53217653aa873f0e5 not-for-merge branch 'hotfix/2.2.0435_bionic' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 7fc45e65f7f31ac1ca73cb90636b536648d37602 not-for-merge branch 'hotfix/2.2.0435_focal' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 -9d23aa6f5c1c566cd3deb52dea6edd4290210d59 not-for-merge branch 'master' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 2759423bf01d687653155cb163dc4e3ea1c18e94 not-for-merge branch 'release/formal-server' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 -a6dfe7c47c0eaae0611fb0f6557b7c1aad90b040 not-for-merge branch 'release/production-bionic' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 +51dda54308f766c419277ee34eca39313f75c2a0 not-for-merge branch 'release/production-bionic' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 +25b60448bf3dd5317b8ca1222af7daa224e75a27 not-for-merge branch 'release/production-focal' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 410c960498655980a851cea587299f0c7bbdd300 not-for-merge branch 'release/test-server' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 a1de7ed18f1d8b87348b8bec8747a8c9649668bb not-for-merge branch 'restructure' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 2100c45c4ca15de908587aa1c76a4d3e88142176 not-for-merge branch 'user_registration' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 -76cc939990682829d06a022510a5a3cb11bca04d not-for-merge tag 'v2.2.0422' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 -27ec487af06a5823f308cefb4e2b81b35bdbc75f not-for-merge tag 'v2.2.0533' of ssh://git.cpgswtools.com/linux/summerpalace-2.0 diff -Nru dell-linux-assistant-2.2.0544/.git/hooks/fsmonitor-watchman.sample dell-linux-assistant-2.2.0548/.git/hooks/fsmonitor-watchman.sample --- dell-linux-assistant-2.2.0544/.git/hooks/fsmonitor-watchman.sample 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/hooks/fsmonitor-watchman.sample 2020-11-17 07:26:51.000000000 +0000 @@ -22,7 +22,8 @@ if ($version == 1) { # convert nanoseconds to seconds - $time = int $time / 1000000000; + # subtract one second to make sure watchman will return all changes + $time = int ($time / 1000000000) - 1; } else { die "Unsupported query-fsmonitor hook version '$version'.\n" . "Falling back to scanning...\n"; @@ -53,18 +54,12 @@ # # To accomplish this, we're using the "since" generator to use the # recency index to select candidate nodes and "fields" to limit the - # output to file names only. Then we're using the "expression" term to - # further constrain the results. - # - # The category of transient files that we want to ignore will have a - # creation clock (cclock) newer than $time_t value and will also not - # currently exist. + # output to file names only. my $query = <<" END"; ["query", "$git_work_tree", { "since": $time, - "fields": ["name"], - "expression": ["not", ["allof", ["since", $time, "cclock"], ["not", "exists"]]] + "fields": ["name"] }] END diff -Nru dell-linux-assistant-2.2.0544/.git/hooks/pre-commit.sample dell-linux-assistant-2.2.0548/.git/hooks/pre-commit.sample --- dell-linux-assistant-2.2.0544/.git/hooks/pre-commit.sample 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/hooks/pre-commit.sample 2020-11-17 07:26:51.000000000 +0000 @@ -12,7 +12,7 @@ against=HEAD else # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 + against=$(git hash-object -t tree /dev/null) fi # If you want to allow non-ASCII filenames set this variable to true. diff -Nru dell-linux-assistant-2.2.0544/.git/hooks/pre-merge-commit.sample dell-linux-assistant-2.2.0548/.git/hooks/pre-merge-commit.sample --- dell-linux-assistant-2.2.0544/.git/hooks/pre-merge-commit.sample 1970-01-01 00:00:00.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/hooks/pre-merge-commit.sample 2020-11-17 07:26:51.000000000 +0000 @@ -0,0 +1,13 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed. +# Called by "git merge" with no arguments. The hook should +# exit with non-zero status after issuing an appropriate message to +# stderr if it wants to stop the merge commit. +# +# To enable this hook, rename this file to "pre-merge-commit". + +. git-sh-setup +test -x "$GIT_DIR/hooks/pre-commit" && + exec "$GIT_DIR/hooks/pre-commit" +: Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/index and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/index differ diff -Nru dell-linux-assistant-2.2.0544/.git/logs/HEAD dell-linux-assistant-2.2.0548/.git/logs/HEAD --- dell-linux-assistant-2.2.0544/.git/logs/HEAD 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/logs/HEAD 2020-11-17 08:56:02.000000000 +0000 @@ -1,21 +1,6 @@ -0000000000000000000000000000000000000000 c6c8b5bfced7ce0ee51ac3802a305a5f2f1e7a4e Vincent Hu 1585624156 +0800 clone: from ssh://git@git.cpgswtools.com/linux/summerpalace-2.0.git -c6c8b5bfced7ce0ee51ac3802a305a5f2f1e7a4e 2759423bf01d687653155cb163dc4e3ea1c18e94 Vincent Hu 1589529795 +0800 checkout: moving from master to release/production-bionic -2759423bf01d687653155cb163dc4e3ea1c18e94 2759423bf01d687653155cb163dc4e3ea1c18e94 Vincent Hu 1589529816 +0800 checkout: moving from release/production-bionic to release/production-bionic -2759423bf01d687653155cb163dc4e3ea1c18e94 c6c8b5bfced7ce0ee51ac3802a305a5f2f1e7a4e Vincent Hu 1589793733 +0800 checkout: moving from release/production-bionic to master -c6c8b5bfced7ce0ee51ac3802a305a5f2f1e7a4e 2759423bf01d687653155cb163dc4e3ea1c18e94 Vincent Hu 1589793760 +0800 checkout: moving from master to release/production-bionic -2759423bf01d687653155cb163dc4e3ea1c18e94 152c7c26b640b14139e1e218bd60728407801a66 Vincent Hu 1589945119 +0800 commit: DTSP-101: Fix telemetry sending issue -152c7c26b640b14139e1e218bd60728407801a66 62a16c24da7ff1efeb6fbd3782d7eccc744d7ad7 Vincent Hu 1589956488 +0800 pull: Fast-forward -62a16c24da7ff1efeb6fbd3782d7eccc744d7ad7 c2abf8557d562d7a9f046bd9ca17cda3b7dbefeb Vincent Hu 1589956507 +0800 checkout: moving from release/production-bionic to release/production-focal -c2abf8557d562d7a9f046bd9ca17cda3b7dbefeb 62a16c24da7ff1efeb6fbd3782d7eccc744d7ad7 Vincent Hu 1589956828 +0800 checkout: moving from release/production-focal to release/production-bionic -62a16c24da7ff1efeb6fbd3782d7eccc744d7ad7 c6c8b5bfced7ce0ee51ac3802a305a5f2f1e7a4e Vincent Hu 1590637209 +0800 checkout: moving from release/production-bionic to master -c6c8b5bfced7ce0ee51ac3802a305a5f2f1e7a4e 33a549bf0971161abcc3cf3c0eba52953902193f Vincent Hu 1590637218 +0800 pull: Fast-forward -33a549bf0971161abcc3cf3c0eba52953902193f 8ca8b14dd9bc0ee75974342896b261d3b1c05e9e Vincent Hu 1590637355 +0800 commit: Add changelog for 2.2.03 -8ca8b14dd9bc0ee75974342896b261d3b1c05e9e 4656824fb01bb95b31573964faa2a107c85115d9 Vincent Hu 1590637981 +0800 pull: Fast-forward -4656824fb01bb95b31573964faa2a107c85115d9 62a16c24da7ff1efeb6fbd3782d7eccc744d7ad7 Vincent Hu 1590638018 +0800 checkout: moving from master to release/production-bionic -62a16c24da7ff1efeb6fbd3782d7eccc744d7ad7 6d79c7248fc7838b193b2b63fb2ed73f22b9c6f8 Vincent Hu 1590638038 +0800 pull: Fast-forward -6d79c7248fc7838b193b2b63fb2ed73f22b9c6f8 9499e93e9ff4f7e412e609e4e9c73cae7daf28db Vincent Hu 1590671036 +0800 pull: Fast-forward -9499e93e9ff4f7e412e609e4e9c73cae7daf28db c2abf8557d562d7a9f046bd9ca17cda3b7dbefeb Vincent Hu 1590671070 +0800 checkout: moving from release/production-bionic to release/production-focal -c2abf8557d562d7a9f046bd9ca17cda3b7dbefeb 3ac8966ecdc7b8572eeaf6d27f2c9f47ebc55612 Vincent Hu 1590671699 +0800 commit (merge): DTSP-100: merge all features of supporting commercial platforms on 20.04 as well, Update changelog about distribution to Focal -3ac8966ecdc7b8572eeaf6d27f2c9f47ebc55612 f8a279f949ee8cfd47b79f94a4008099a33e8d01 Vincent Hu 1593334390 -0400 pull: Fast-forward -f8a279f949ee8cfd47b79f94a4008099a33e8d01 7fc45e65f7f31ac1ca73cb90636b536648d37602 Vincent Hu 1594361752 -0400 pull: Fast-forward -7fc45e65f7f31ac1ca73cb90636b536648d37602 25b60448bf3dd5317b8ca1222af7daa224e75a27 Vincent Hu 1600008364 -0400 pull: Fast-forward +0000000000000000000000000000000000000000 1da4f8f36c57714abe9a338104f5f651c3cd5a9f Vincent Hu 1605599428 -0500 clone: from ssh://git@git.cpgswtools.com/linux/summerpalace-2.0.git +1da4f8f36c57714abe9a338104f5f651c3cd5a9f 25b60448bf3dd5317b8ca1222af7daa224e75a27 Vincent Hu 1605600175 -0500 checkout: moving from master to release/production-focal +25b60448bf3dd5317b8ca1222af7daa224e75a27 3636a8e294218fcc2224e66fb932bc7c0c4dc193 Vincent Hu 1605600573 -0500 commit (merge): Update build & runtime dependency +3636a8e294218fcc2224e66fb932bc7c0c4dc193 089254a0bbc1fbfde72e45efff791eb7ea034353 Vincent Hu 1605600882 -0500 commit: revert changes for libssl version on build depends +089254a0bbc1fbfde72e45efff791eb7ea034353 825a71ef93465e383137503b9744bd66d551dd4c Vincent Hu 1605601432 -0500 commit: update apt source list file +825a71ef93465e383137503b9744bd66d551dd4c a157e753dbfb406840f821c55e51c9aaf73197e9 Vincent Hu 1605603362 -0500 commit: update apt source file on MANIFEST, add dh-python for build dependes on PPA diff -Nru dell-linux-assistant-2.2.0544/.git/logs/refs/heads/master dell-linux-assistant-2.2.0548/.git/logs/refs/heads/master --- dell-linux-assistant-2.2.0544/.git/logs/refs/heads/master 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/logs/refs/heads/master 2020-11-17 07:50:28.000000000 +0000 @@ -1,4 +1 @@ -0000000000000000000000000000000000000000 c6c8b5bfced7ce0ee51ac3802a305a5f2f1e7a4e Vincent Hu 1585624156 +0800 clone: from ssh://git@git.cpgswtools.com/linux/summerpalace-2.0.git -c6c8b5bfced7ce0ee51ac3802a305a5f2f1e7a4e 33a549bf0971161abcc3cf3c0eba52953902193f Vincent Hu 1590637218 +0800 pull: Fast-forward -33a549bf0971161abcc3cf3c0eba52953902193f 8ca8b14dd9bc0ee75974342896b261d3b1c05e9e Vincent Hu 1590637355 +0800 commit: Add changelog for 2.2.03 -8ca8b14dd9bc0ee75974342896b261d3b1c05e9e 4656824fb01bb95b31573964faa2a107c85115d9 Vincent Hu 1590637981 +0800 pull: Fast-forward +0000000000000000000000000000000000000000 1da4f8f36c57714abe9a338104f5f651c3cd5a9f Vincent Hu 1605599428 -0500 clone: from ssh://git@git.cpgswtools.com/linux/summerpalace-2.0.git diff -Nru dell-linux-assistant-2.2.0544/.git/logs/refs/heads/release/production-bionic dell-linux-assistant-2.2.0548/.git/logs/refs/heads/release/production-bionic --- dell-linux-assistant-2.2.0544/.git/logs/refs/heads/release/production-bionic 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/logs/refs/heads/release/production-bionic 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ -0000000000000000000000000000000000000000 2759423bf01d687653155cb163dc4e3ea1c18e94 Vincent Hu 1589529795 +0800 branch: Created from refs/remotes/origin/release/production-bionic -2759423bf01d687653155cb163dc4e3ea1c18e94 152c7c26b640b14139e1e218bd60728407801a66 Vincent Hu 1589945119 +0800 commit: DTSP-101: Fix telemetry sending issue -152c7c26b640b14139e1e218bd60728407801a66 62a16c24da7ff1efeb6fbd3782d7eccc744d7ad7 Vincent Hu 1589956488 +0800 pull: Fast-forward -62a16c24da7ff1efeb6fbd3782d7eccc744d7ad7 6d79c7248fc7838b193b2b63fb2ed73f22b9c6f8 Vincent Hu 1590638038 +0800 pull: Fast-forward -6d79c7248fc7838b193b2b63fb2ed73f22b9c6f8 9499e93e9ff4f7e412e609e4e9c73cae7daf28db Vincent Hu 1590671036 +0800 pull: Fast-forward diff -Nru dell-linux-assistant-2.2.0544/.git/logs/refs/heads/release/production-focal dell-linux-assistant-2.2.0548/.git/logs/refs/heads/release/production-focal --- dell-linux-assistant-2.2.0544/.git/logs/refs/heads/release/production-focal 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/logs/refs/heads/release/production-focal 2020-11-17 08:56:02.000000000 +0000 @@ -1,5 +1,5 @@ -0000000000000000000000000000000000000000 c2abf8557d562d7a9f046bd9ca17cda3b7dbefeb Vincent Hu 1589956507 +0800 branch: Created from refs/remotes/origin/release/production-focal -c2abf8557d562d7a9f046bd9ca17cda3b7dbefeb 3ac8966ecdc7b8572eeaf6d27f2c9f47ebc55612 Vincent Hu 1590671699 +0800 commit (merge): DTSP-100: merge all features of supporting commercial platforms on 20.04 as well, Update changelog about distribution to Focal -3ac8966ecdc7b8572eeaf6d27f2c9f47ebc55612 f8a279f949ee8cfd47b79f94a4008099a33e8d01 Vincent Hu 1593334390 -0400 pull: Fast-forward -f8a279f949ee8cfd47b79f94a4008099a33e8d01 7fc45e65f7f31ac1ca73cb90636b536648d37602 Vincent Hu 1594361752 -0400 pull: Fast-forward -7fc45e65f7f31ac1ca73cb90636b536648d37602 25b60448bf3dd5317b8ca1222af7daa224e75a27 Vincent Hu 1600008364 -0400 pull: Fast-forward +0000000000000000000000000000000000000000 25b60448bf3dd5317b8ca1222af7daa224e75a27 Vincent Hu 1605600175 -0500 branch: Created from refs/remotes/origin/release/production-focal +25b60448bf3dd5317b8ca1222af7daa224e75a27 3636a8e294218fcc2224e66fb932bc7c0c4dc193 Vincent Hu 1605600573 -0500 commit (merge): Update build & runtime dependency +3636a8e294218fcc2224e66fb932bc7c0c4dc193 089254a0bbc1fbfde72e45efff791eb7ea034353 Vincent Hu 1605600882 -0500 commit: revert changes for libssl version on build depends +089254a0bbc1fbfde72e45efff791eb7ea034353 825a71ef93465e383137503b9744bd66d551dd4c Vincent Hu 1605601432 -0500 commit: update apt source list file +825a71ef93465e383137503b9744bd66d551dd4c a157e753dbfb406840f821c55e51c9aaf73197e9 Vincent Hu 1605603362 -0500 commit: update apt source file on MANIFEST, add dh-python for build dependes on PPA diff -Nru dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/bugfix/rc_2.2.0438 dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/bugfix/rc_2.2.0438 --- dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/bugfix/rc_2.2.0438 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/bugfix/rc_2.2.0438 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 2d7d68137f3353a3f4755709fd2a9e1ea07adef5 Vincent Hu 1600008364 -0400 pull: storing head diff -Nru dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/feature/commercial_expansion dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/feature/commercial_expansion --- dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/feature/commercial_expansion 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/feature/commercial_expansion 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -0000000000000000000000000000000000000000 853beb3a32c9172e3eb8953fec8d51c3e4960686 Vincent Hu 1590637218 +0800 pull: storing head -853beb3a32c9172e3eb8953fec8d51c3e4960686 a704c5932587b41117bf2d8136b96e1417ccecf9 Vincent Hu 1590637981 +0800 pull: fast-forward diff -Nru dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/feature/performance_imp dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/feature/performance_imp --- dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/feature/performance_imp 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/feature/performance_imp 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 aeff72bae6d198ab2047a24d207d9c3b31beaa22 Vincent Hu 1600008364 -0400 pull: storing head diff -Nru dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/feature/rc_2.2.05 dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/feature/rc_2.2.05 --- dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/feature/rc_2.2.05 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/feature/rc_2.2.05 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 5995aca11766b899cf69013550f54f7e64a6b02c Vincent Hu 1600008364 -0400 pull: storing head diff -Nru dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/HEAD dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/HEAD --- dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/HEAD 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/HEAD 2020-11-17 07:50:28.000000000 +0000 @@ -1 +1 @@ -0000000000000000000000000000000000000000 c6c8b5bfced7ce0ee51ac3802a305a5f2f1e7a4e Vincent Hu 1585624156 +0800 clone: from ssh://git@git.cpgswtools.com/linux/summerpalace-2.0.git +0000000000000000000000000000000000000000 1da4f8f36c57714abe9a338104f5f651c3cd5a9f Vincent Hu 1605599428 -0500 clone: from ssh://git@git.cpgswtools.com/linux/summerpalace-2.0.git diff -Nru dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/hotfix/2.2.0435_bionic dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/hotfix/2.2.0435_bionic --- dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/hotfix/2.2.0435_bionic 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/hotfix/2.2.0435_bionic 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 174be81a86d1f01c7daa8bd53217653aa873f0e5 Vincent Hu 1600008364 -0400 pull: storing head diff -Nru dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/hotfix/2.2.0435_focal dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/hotfix/2.2.0435_focal --- dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/hotfix/2.2.0435_focal 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/hotfix/2.2.0435_focal 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -0000000000000000000000000000000000000000 7fc45e65f7f31ac1ca73cb90636b536648d37602 Vincent Hu 1600008364 -0400 pull: storing head diff -Nru dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/master dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/master --- dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/master 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/master 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ -c6c8b5bfced7ce0ee51ac3802a305a5f2f1e7a4e 33a549bf0971161abcc3cf3c0eba52953902193f Vincent Hu 1589956488 +0800 pull: fast-forward -33a549bf0971161abcc3cf3c0eba52953902193f 8ca8b14dd9bc0ee75974342896b261d3b1c05e9e Vincent Hu 1590637368 +0800 update by push -8ca8b14dd9bc0ee75974342896b261d3b1c05e9e 4656824fb01bb95b31573964faa2a107c85115d9 Vincent Hu 1590637981 +0800 pull: fast-forward -4656824fb01bb95b31573964faa2a107c85115d9 ed3270da59eee67d28d4c4c8c69b7126457b8747 Vincent Hu 1590671036 +0800 pull: fast-forward -ed3270da59eee67d28d4c4c8c69b7126457b8747 a8bea1f947d9620090663d41e1cdf18dd83c1fd5 Vincent Hu 1593334390 -0400 pull: fast-forward -a8bea1f947d9620090663d41e1cdf18dd83c1fd5 5995aca11766b899cf69013550f54f7e64a6b02c Vincent Hu 1594361752 -0400 pull: fast-forward -5995aca11766b899cf69013550f54f7e64a6b02c 9d23aa6f5c1c566cd3deb52dea6edd4290210d59 Vincent Hu 1600008364 -0400 pull: fast-forward diff -Nru dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/release/formal-server dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/release/formal-server --- dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/release/formal-server 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/release/formal-server 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -288a209e2104c974d684eb9702e4d6722e30b69c 2759423bf01d687653155cb163dc4e3ea1c18e94 Vincent Hu 1588998238 +0800 pull: fast-forward diff -Nru dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/release/production-bionic dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/release/production-bionic --- dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/release/production-bionic 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/release/production-bionic 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -0000000000000000000000000000000000000000 2759423bf01d687653155cb163dc4e3ea1c18e94 Vincent Hu 1588998238 +0800 pull: storing head -2759423bf01d687653155cb163dc4e3ea1c18e94 152c7c26b640b14139e1e218bd60728407801a66 Vincent Hu 1589945156 +0800 update by push -152c7c26b640b14139e1e218bd60728407801a66 62a16c24da7ff1efeb6fbd3782d7eccc744d7ad7 Vincent Hu 1589956488 +0800 pull: fast-forward -62a16c24da7ff1efeb6fbd3782d7eccc744d7ad7 6d79c7248fc7838b193b2b63fb2ed73f22b9c6f8 Vincent Hu 1590637981 +0800 pull: fast-forward -6d79c7248fc7838b193b2b63fb2ed73f22b9c6f8 9499e93e9ff4f7e412e609e4e9c73cae7daf28db Vincent Hu 1590671036 +0800 pull: fast-forward -9499e93e9ff4f7e412e609e4e9c73cae7daf28db 9c3c9ab6a8ce288811640accafd027fa026b4b80 Vincent Hu 1593334390 -0400 pull: fast-forward -9c3c9ab6a8ce288811640accafd027fa026b4b80 9148b5e0b50d4f2326cc53bdf58c78ef28ade6b1 Vincent Hu 1594361752 -0400 pull: fast-forward -9148b5e0b50d4f2326cc53bdf58c78ef28ade6b1 a6dfe7c47c0eaae0611fb0f6557b7c1aad90b040 Vincent Hu 1600008364 -0400 pull: fast-forward diff -Nru dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/release/production-focal dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/release/production-focal --- dell-linux-assistant-2.2.0544/.git/logs/refs/remotes/origin/release/production-focal 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/logs/refs/remotes/origin/release/production-focal 2020-11-17 08:56:12.000000000 +0000 @@ -1,7 +1,4 @@ -0000000000000000000000000000000000000000 2759423bf01d687653155cb163dc4e3ea1c18e94 Vincent Hu 1588998238 +0800 pull: storing head -2759423bf01d687653155cb163dc4e3ea1c18e94 231d9c5dc5d507cc081f292d78ed031f0c6f7622 Vincent Hu 1589529773 +0800 pull: fast-forward -231d9c5dc5d507cc081f292d78ed031f0c6f7622 c2abf8557d562d7a9f046bd9ca17cda3b7dbefeb Vincent Hu 1589956488 +0800 pull: fast-forward -c2abf8557d562d7a9f046bd9ca17cda3b7dbefeb 3ac8966ecdc7b8572eeaf6d27f2c9f47ebc55612 Vincent Hu 1590671725 +0800 update by push -3ac8966ecdc7b8572eeaf6d27f2c9f47ebc55612 f8a279f949ee8cfd47b79f94a4008099a33e8d01 Vincent Hu 1593334390 -0400 pull: fast-forward -f8a279f949ee8cfd47b79f94a4008099a33e8d01 7fc45e65f7f31ac1ca73cb90636b536648d37602 Vincent Hu 1594361752 -0400 pull: fast-forward -7fc45e65f7f31ac1ca73cb90636b536648d37602 25b60448bf3dd5317b8ca1222af7daa224e75a27 Vincent Hu 1600008364 -0400 pull: fast-forward +25b60448bf3dd5317b8ca1222af7daa224e75a27 3636a8e294218fcc2224e66fb932bc7c0c4dc193 Vincent Hu 1605600597 -0500 update by push +3636a8e294218fcc2224e66fb932bc7c0c4dc193 089254a0bbc1fbfde72e45efff791eb7ea034353 Vincent Hu 1605600903 -0500 update by push +089254a0bbc1fbfde72e45efff791eb7ea034353 825a71ef93465e383137503b9744bd66d551dd4c Vincent Hu 1605601447 -0500 update by push +825a71ef93465e383137503b9744bd66d551dd4c a157e753dbfb406840f821c55e51c9aaf73197e9 Vincent Hu 1605603372 -0500 update by push Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/00/1bacd8637d489156a975fd80f82a78119b8b26 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/00/1bacd8637d489156a975fd80f82a78119b8b26 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/08/2c35d0420a4acff26760515b6e5fd260903e04 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/08/2c35d0420a4acff26760515b6e5fd260903e04 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/08/9254a0bbc1fbfde72e45efff791eb7ea034353 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/08/9254a0bbc1fbfde72e45efff791eb7ea034353 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/0d/3d3bd75604bef182874ff7110f6f719b283e02 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/0d/3d3bd75604bef182874ff7110f6f719b283e02 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/0d/5e5253ee76067027e12e5b73e4a54b15fc103c and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/0d/5e5253ee76067027e12e5b73e4a54b15fc103c differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/0d/fc24085bcb5877b314aeb6a45111f28c6ec4d3 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/0d/fc24085bcb5877b314aeb6a45111f28c6ec4d3 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/0e/ffc0fd207e697f4a904dc5ab2ffdf8ce813129 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/0e/ffc0fd207e697f4a904dc5ab2ffdf8ce813129 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/10/d1f14b32661e6188cf16c45167bf393da52053 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/10/d1f14b32661e6188cf16c45167bf393da52053 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/11/77189eb2ea13fed4fab99af1dffd647296e9a2 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/11/77189eb2ea13fed4fab99af1dffd647296e9a2 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/13/3ea824b66c28aba874e473103d0489fe328c61 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/13/3ea824b66c28aba874e473103d0489fe328c61 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/13/caeab493c7bf3f3497a11c4ae00e44659a897c and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/13/caeab493c7bf3f3497a11c4ae00e44659a897c differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/13/d9c5ed59a35d2379c9c25341351f81e28424b8 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/13/d9c5ed59a35d2379c9c25341351f81e28424b8 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/14/5e2026d6a88da1853bb38e2d93291cc6d6097c and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/14/5e2026d6a88da1853bb38e2d93291cc6d6097c differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/15/2c7c26b640b14139e1e218bd60728407801a66 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/15/2c7c26b640b14139e1e218bd60728407801a66 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/16/197679892f65af4721011158a70f8ae315ca30 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/16/197679892f65af4721011158a70f8ae315ca30 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/18/7c7afd812ac8a9b5d86b4d4e16646285f91003 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/18/7c7afd812ac8a9b5d86b4d4e16646285f91003 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/1d/515aeed3c7e0f827e88f618dd31e62053946a2 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/1d/515aeed3c7e0f827e88f618dd31e62053946a2 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/20/a9e3772d0424761b5ef2890a748e57755ed0b3 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/20/a9e3772d0424761b5ef2890a748e57755ed0b3 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/22/101098ea511031f7bf9a0a31c7d32844fd5cfb and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/22/101098ea511031f7bf9a0a31c7d32844fd5cfb differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/23/1d9c5dc5d507cc081f292d78ed031f0c6f7622 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/23/1d9c5dc5d507cc081f292d78ed031f0c6f7622 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/26/0340f6b3946894f7f0cbe7931df7639e98aa92 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/26/0340f6b3946894f7f0cbe7931df7639e98aa92 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/26/b210c976bcdb863bf4ad6bbc3657c3f05e9d73 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/26/b210c976bcdb863bf4ad6bbc3657c3f05e9d73 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/27/59423bf01d687653155cb163dc4e3ea1c18e94 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/27/59423bf01d687653155cb163dc4e3ea1c18e94 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/29/6cb6591aa08b8dfefebe524a2b8ac84e569994 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/29/6cb6591aa08b8dfefebe524a2b8ac84e569994 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/2b/20813e49f2d19eaeb98f82d34ac792a8f94cde and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/2b/20813e49f2d19eaeb98f82d34ac792a8f94cde differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/2b/826ea55de9aaa968cad8a2edddcd094116d9e3 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/2b/826ea55de9aaa968cad8a2edddcd094116d9e3 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/2e/455e86a52be66d6f80462ede8bfdfda89b8334 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/2e/455e86a52be66d6f80462ede8bfdfda89b8334 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/2e/8537fc738b9e9bc4a7528835eb1b4fa4b15685 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/2e/8537fc738b9e9bc4a7528835eb1b4fa4b15685 differ diff -Nru dell-linux-assistant-2.2.0544/.git/objects/2e/8b49071c39cc034108c193ef01c03edb78c63a dell-linux-assistant-2.2.0548/.git/objects/2e/8b49071c39cc034108c193ef01c03edb78c63a --- dell-linux-assistant-2.2.0544/.git/objects/2e/8b49071c39cc034108c193ef01c03edb78c63a 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/objects/2e/8b49071c39cc034108c193ef01c03edb78c63a 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -xJ0a׽,i9 g)(xZh&^w/<𥲮sCEE2geEGmq|BGj3~"J '+FJK]lu*;|9[ߚ,K|@upA؝X_{x{ Ʊ -),q,Be?撡8ڶB[ 4hY5 \ No newline at end of file Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/2f/de0218d06e53ce565c9af30a341ac03968a666 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/2f/de0218d06e53ce565c9af30a341ac03968a666 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/30/546492c8108529c07fe31b032a98dc2b1a3544 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/30/546492c8108529c07fe31b032a98dc2b1a3544 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/30/f343fabdbd02d5dfbc253bf7e18438f1e58298 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/30/f343fabdbd02d5dfbc253bf7e18438f1e58298 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/31/7e29c7d39316835eea17675bfe419d11689a45 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/31/7e29c7d39316835eea17675bfe419d11689a45 differ diff -Nru dell-linux-assistant-2.2.0544/.git/objects/33/a549bf0971161abcc3cf3c0eba52953902193f dell-linux-assistant-2.2.0548/.git/objects/33/a549bf0971161abcc3cf3c0eba52953902193f --- dell-linux-assistant-2.2.0544/.git/objects/33/a549bf0971161abcc3cf3c0eba52953902193f 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/objects/33/a549bf0971161abcc3cf3c0eba52953902193f 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -xJ1E]+jytM*"BdR]= 1 ~=;Á+uKO7UJ$1PN 0 ͅ.d/1OcXY"'5SmYvxwXN)%+^!Oo'jIbb@Wzcy8n {SGÔÎW> fpx0ts,۸8 b0Q!pP |_{ \ No newline at end of file Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/44/e6a98367071a18c049fba2db0d5bcf714d36b9 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/44/e6a98367071a18c049fba2db0d5bcf714d36b9 differ diff -Nru dell-linux-assistant-2.2.0544/.git/objects/46/56824fb01bb95b31573964faa2a107c85115d9 dell-linux-assistant-2.2.0548/.git/objects/46/56824fb01bb95b31573964faa2a107c85115d9 --- dell-linux-assistant-2.2.0544/.git/objects/46/56824fb01bb95b31573964faa2a107c85115d9 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/objects/46/56824fb01bb95b31573964faa2a107c85115d9 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -xQj1yb&&TPP+ho2If]lb6[ߛ-EA| 393眸X@d"^XJ2dP2^rFxڡXLj4k;MoE}kc =QI -8k;#7rnmwޯ^>4ڼ4M{+ҰUcNBn>Q>u ϕgq>_X('N 9˚b;Nٍ8_ e3iý<8( 巯_vƼ/8cx=\bAHyEws,_X;uX?OŅ9PT-<Oe㠍kGj~F \ No newline at end of file Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/47/5026f07b75fa7cd8011802d6d1196dbd7b6215 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/47/5026f07b75fa7cd8011802d6d1196dbd7b6215 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/4a/38dee67e9ab3ea722d7c50116477f0ac8491d1 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/4a/38dee67e9ab3ea722d7c50116477f0ac8491d1 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/4f/1022502d4fa4937cf09b44e1fb2e752d9c7af8 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/4f/1022502d4fa4937cf09b44e1fb2e752d9c7af8 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/4f/a8fde3e91187c561b7219af90269e2a3f37b3b and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/4f/a8fde3e91187c561b7219af90269e2a3f37b3b differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/52/740581b49626b6c45ace00b6ee4d16af65659e and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/52/740581b49626b6c45ace00b6ee4d16af65659e differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/52/bace0b7d73c7502b14e964bdc00a6f05f5bea6 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/52/bace0b7d73c7502b14e964bdc00a6f05f5bea6 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/54/6c07e551718c9529da2b6efdc1fb43160e624e and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/54/6c07e551718c9529da2b6efdc1fb43160e624e differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/57/71a19912f1a5de736534deb5609a977b5e5c87 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/57/71a19912f1a5de736534deb5609a977b5e5c87 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/58/81aac987e5482877237fec4e9c4c53f4756e7d and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/58/81aac987e5482877237fec4e9c4c53f4756e7d differ diff -Nru dell-linux-assistant-2.2.0544/.git/objects/59/95aca11766b899cf69013550f54f7e64a6b02c dell-linux-assistant-2.2.0548/.git/objects/59/95aca11766b899cf69013550f54f7e64a6b02c --- dell-linux-assistant-2.2.0544/.git/objects/59/95aca11766b899cf69013550f54f7e64a6b02c 2020-07-10 06:15:52.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/objects/59/95aca11766b899cf69013550f54f7e64a6b02c 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -xKj0D)z5\ ٷAVdž +O#8gD1̓s2a禀ibts6 ]%i4xtZZo8q";1!jM/z:#$*(\/%X^eI ~&%]*>hLI|^A%×9Vu7Q&@P_TðIOz7p9KStK2-zʋ! 3W~z$57!1]4ʸ6$5'57a΅+T9mLa'<t \ No newline at end of file Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/5d/8b47b0abc5b44a1d1ee2dd56c2358131de1abe and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/5d/8b47b0abc5b44a1d1ee2dd56c2358131de1abe differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/5f/674b2e2b8226b93c8ccd4ebf7144c5299bb511 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/5f/674b2e2b8226b93c8ccd4ebf7144c5299bb511 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/61/de702a41154ccee7309f406e4b2e8f4f74d7d9 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/61/de702a41154ccee7309f406e4b2e8f4f74d7d9 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/62/a16c24da7ff1efeb6fbd3782d7eccc744d7ad7 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/62/a16c24da7ff1efeb6fbd3782d7eccc744d7ad7 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/67/3d6a2ed9d2493961049f17b35b44e587640f06 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/67/3d6a2ed9d2493961049f17b35b44e587640f06 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/69/0358fd482f38a797572761e79af81dd96e506a and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/69/0358fd482f38a797572761e79af81dd96e506a differ diff -Nru dell-linux-assistant-2.2.0544/.git/objects/6d/79c7248fc7838b193b2b63fb2ed73f22b9c6f8 dell-linux-assistant-2.2.0548/.git/objects/6d/79c7248fc7838b193b2b63fb2ed73f22b9c6f8 --- dell-linux-assistant-2.2.0544/.git/objects/6d/79c7248fc7838b193b2b63fb2ed73f22b9c6f8 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/objects/6d/79c7248fc7838b193b2b63fb2ed73f22b9c6f8 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -xQ]k0 s~`{8/c uU{q9N~]=I#P@d"\;mp*@a53f -X\Xծ"XOΐ}ˌ o; qk+-MDi+Ε7 2|&|Z]kqi.aF(1XSSc7_) u!ϕa//kgN"D\6Œ*i$\|ɯ i4oi78;ow;c>%\zWX<<{)`'R@w;t!ir"zBqg6gP@li-0㑚_B \ No newline at end of file Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/6d/fe0587854c49fb1bc12e41c29e465a66af50ab and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/6d/fe0587854c49fb1bc12e41c29e465a66af50ab differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/6e/bdd84f2f93b52f8feb5aaf153eaa3acf2ccfcb and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/6e/bdd84f2f93b52f8feb5aaf153eaa3acf2ccfcb differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/70/83feae4a9c290cca8b6daa99c0a1229ad89103 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/70/83feae4a9c290cca8b6daa99c0a1229ad89103 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/72/afb174c8d0ebd98b24b8d62e8e5a1cfc60af33 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/72/afb174c8d0ebd98b24b8d62e8e5a1cfc60af33 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/74/ddeb64a0be1e771570d20f0b9b0b7cfcb55f20 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/74/ddeb64a0be1e771570d20f0b9b0b7cfcb55f20 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/75/4dbd278bfc48077fb758edf28ec547513e2142 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/75/4dbd278bfc48077fb758edf28ec547513e2142 differ diff -Nru dell-linux-assistant-2.2.0544/.git/objects/76/bdc9e95955a5f2711cca7cec3478ba02fc61d6 dell-linux-assistant-2.2.0548/.git/objects/76/bdc9e95955a5f2711cca7cec3478ba02fc61d6 --- dell-linux-assistant-2.2.0544/.git/objects/76/bdc9e95955a5f2711cca7cec3478ba02fc61d6 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/objects/76/bdc9e95955a5f2711cca7cec3478ba02fc61d6 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -x+)JMU02d040031QpI+p,.,.I+dB}]Osf>J1 -KI,ap8WY'BߵIog iSWP%|ojM`F($0fݼi2_|s~6tK2-zʋ! 3W~z$57!1]4ʸ6$5'57a΅+T9mLa'<$q \ No newline at end of file Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/76/e97cb6bb3bc4f96b16ec56adc7116c6f98475c and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/76/e97cb6bb3bc4f96b16ec56adc7116c6f98475c differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/7b/8e95a041b33ab9f08998a2fb2d787575bcb2e6 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/7b/8e95a041b33ab9f08998a2fb2d787575bcb2e6 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/7e/57fe184e93fc12cab8efe5a65d693e01280d12 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/7e/57fe184e93fc12cab8efe5a65d693e01280d12 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/7f/c45e65f7f31ac1ca73cb90636b536648d37602 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/7f/c45e65f7f31ac1ca73cb90636b536648d37602 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/80/837bb4ec067ee23b0aaa53dfc2934e82e8e2bc and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/80/837bb4ec067ee23b0aaa53dfc2934e82e8e2bc differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/81/614f8fdf369f73afcf4fcaf37260d4c0475188 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/81/614f8fdf369f73afcf4fcaf37260d4c0475188 differ diff -Nru dell-linux-assistant-2.2.0544/.git/objects/82/5a71ef93465e383137503b9744bd66d551dd4c dell-linux-assistant-2.2.0548/.git/objects/82/5a71ef93465e383137503b9744bd66d551dd4c --- dell-linux-assistant-2.2.0544/.git/objects/82/5a71ef93465e383137503b9744bd66d551dd4c 1970-01-01 00:00:00.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/objects/82/5a71ef93465e383137503b9744bd66d551dd4c 2020-11-17 08:23:52.000000000 +0000 @@ -0,0 +1 @@ +x 0sV@k B.1ر@*; /o:7PF]Z%̞Us mq]uRJ&7j{n>(k"%'.4*2y HVkMn?ez:F+E=/6+}/Ľ hBL \ No newline at end of file Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/82/8dff4152ea501f0b01968fb77c9c1a01db93f6 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/82/8dff4152ea501f0b01968fb77c9c1a01db93f6 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/83/8c3ad7196e9752b462aee457c8e646dcd23651 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/83/8c3ad7196e9752b462aee457c8e646dcd23651 differ diff -Nru dell-linux-assistant-2.2.0544/.git/objects/85/3beb3a32c9172e3eb8953fec8d51c3e4960686 dell-linux-assistant-2.2.0548/.git/objects/85/3beb3a32c9172e3eb8953fec8d51c3e4960686 --- dell-linux-assistant-2.2.0544/.git/objects/85/3beb3a32c9172e3eb8953fec8d51c3e4960686 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/objects/85/3beb3a32c9172e3eb8953fec8d51c3e4960686 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -xKKA=zz2EPsŅeV߻cwUUA<%qVRZri, $"P֊fz2V)-Zc";L4SuZr7f@h'] -= -av~ЖV)>(9ges6p錀=7?=Q:,k}\RJgx|x>:M i8 )N0aK@鸤دq޻:F|g_{]3c!@ -s,'[E)}l8f㌡": \ No newline at end of file Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/91/5ceb98913269fb95dde4c9894706c03c8920b0 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/91/5ceb98913269fb95dde4c9894706c03c8920b0 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/94/99e93e9ff4f7e412e609e4e9c73cae7daf28db and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/94/99e93e9ff4f7e412e609e4e9c73cae7daf28db differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/95/70115ca438026a201703a2b0e646d6671e3873 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/95/70115ca438026a201703a2b0e646d6671e3873 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/98/f65d32d51468eb75c05884d9f7b5ad1b5c589a and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/98/f65d32d51468eb75c05884d9f7b5ad1b5c589a differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/9c/3c9ab6a8ce288811640accafd027fa026b4b80 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/9c/3c9ab6a8ce288811640accafd027fa026b4b80 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/9c/d0b56f71b2adde70b27993d5cfb602561fc849 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/9c/d0b56f71b2adde70b27993d5cfb602561fc849 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/9f/10f29fb4371e8191cc03c1af87e184c0419752 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/9f/10f29fb4371e8191cc03c1af87e184c0419752 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/a0/d033b6da7439e3ad3ffec91e4db8a2bc3bb92f and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/a0/d033b6da7439e3ad3ffec91e4db8a2bc3bb92f differ diff -Nru dell-linux-assistant-2.2.0544/.git/objects/a1/57e753dbfb406840f821c55e51c9aaf73197e9 dell-linux-assistant-2.2.0548/.git/objects/a1/57e753dbfb406840f821c55e51c9aaf73197e9 --- dell-linux-assistant-2.2.0544/.git/objects/a1/57e753dbfb406840f821c55e51c9aaf73197e9 1970-01-01 00:00:00.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/objects/a1/57e753dbfb406840f821c55e51c9aaf73197e9 2020-11-17 08:56:02.000000000 +0000 @@ -0,0 +1,3 @@ +xMj0)[JHI-%'b%H޾ + 3M:W=ՍF Ą6:n+>{J, -ׂ/}.h1{(1Ю׸;ǧ/Um~]ꢇ{5=.+6o9?ZIm&R-\TW \ No newline at end of file Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/ba/358c32bdd4f03b7c672fbde967c9ebd84093fe and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/ba/358c32bdd4f03b7c672fbde967c9ebd84093fe differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/bb/90cc4d85cef9a7794eda6d01782f7af1ec8111 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/bb/90cc4d85cef9a7794eda6d01782f7af1ec8111 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/c2/8f34304283984acce1d3a367c39560e35c5a9a and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/c2/8f34304283984acce1d3a367c39560e35c5a9a differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/c2/abf8557d562d7a9f046bd9ca17cda3b7dbefeb and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/c2/abf8557d562d7a9f046bd9ca17cda3b7dbefeb differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/c4/3689ab5eed3d6bb8c201dcce2ac9aea7fc67d3 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/c4/3689ab5eed3d6bb8c201dcce2ac9aea7fc67d3 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/c5/8118850ee2f1d1224fd53711f8f436e7e2fa9c and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/c5/8118850ee2f1d1224fd53711f8f436e7e2fa9c differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/c5/aec48b5c03cbc6a3aecb588febbbdeafd0faa3 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/c5/aec48b5c03cbc6a3aecb588febbbdeafd0faa3 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/c9/3c15909c45b20898cc71813ea8805ee7ab387c and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/c9/3c15909c45b20898cc71813ea8805ee7ab387c differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/c9/750d4885d80e7182543545e86906ccc2b5df03 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/c9/750d4885d80e7182543545e86906ccc2b5df03 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/ca/4509ea3bfbab543a41d6eebb8ab57b53858ec3 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/ca/4509ea3bfbab543a41d6eebb8ab57b53858ec3 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/ca/529f1db7bf92687fe7a6fac63c0a801d9efe07 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/ca/529f1db7bf92687fe7a6fac63c0a801d9efe07 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/cd/150cc95b87f94b7581764be2f6040a49eb13d7 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/cd/150cc95b87f94b7581764be2f6040a49eb13d7 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/cf/8f2d8c68888b05d6d493d556139eebf21b6730 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/cf/8f2d8c68888b05d6d493d556139eebf21b6730 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/cf/e1d7edcca6adac8fc928dcb141bf75a2463b71 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/cf/e1d7edcca6adac8fc928dcb141bf75a2463b71 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/d0/a06e1951b85b068b2c59cef23279032418b213 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/d0/a06e1951b85b068b2c59cef23279032418b213 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/d3/530e5aca2beb8e7fc49373d7f02cb3ead5d863 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/d3/530e5aca2beb8e7fc49373d7f02cb3ead5d863 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/d3/7b3d80c902d3c7203bd2cb0ec78c5cc039ce9e and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/d3/7b3d80c902d3c7203bd2cb0ec78c5cc039ce9e differ diff -Nru dell-linux-assistant-2.2.0544/.git/objects/d3/db28a26b11b2fb1c7339b20293ca7ea58acc61 dell-linux-assistant-2.2.0548/.git/objects/d3/db28a26b11b2fb1c7339b20293ca7ea58acc61 --- dell-linux-assistant-2.2.0544/.git/objects/d3/db28a26b11b2fb1c7339b20293ca7ea58acc61 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/objects/d3/db28a26b11b2fb1c7339b20293ca7ea58acc61 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -x1j1ESciB)R4$#{Z6{ 9A=N= -A2%x F\w1P `tI4`&3$rLYŤ_kqΏW~mqH>O;NG!巍k:CvXE -O \ No newline at end of file Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/d5/4b0aec6cacdfed608522fd19b5fb0df4acb4ff and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/d5/4b0aec6cacdfed608522fd19b5fb0df4acb4ff differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/d6/a7d56f05c93a4a0056eaefb06d99a9f558f5ce and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/d6/a7d56f05c93a4a0056eaefb06d99a9f558f5ce differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/de/eb2603afaf8352cde2b3d8408f7f35c03b88db and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/de/eb2603afaf8352cde2b3d8408f7f35c03b88db differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/df/8f134520ce3bce74345e6e8a7c16f3b87b0492 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/df/8f134520ce3bce74345e6e8a7c16f3b87b0492 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/df/cf16969abe47430dee8f8cf0a8fd3c1e5c8ae3 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/df/cf16969abe47430dee8f8cf0a8fd3c1e5c8ae3 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/e1/1853f4162b5fe8720f8607130f4dd6d101ee2e and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/e1/1853f4162b5fe8720f8607130f4dd6d101ee2e differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/e2/66f33384e3f9800e50ff281ae9a988df4af005 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/e2/66f33384e3f9800e50ff281ae9a988df4af005 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/e3/a429bba90cccdabe457d8e15c315e695c06a60 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/e3/a429bba90cccdabe457d8e15c315e695c06a60 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/e4/3fe8c6f4388554e6958171fb12defd95d6873f and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/e4/3fe8c6f4388554e6958171fb12defd95d6873f differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/e4/c389f0299301dc5730fda6d9069e047a0cedf1 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/e4/c389f0299301dc5730fda6d9069e047a0cedf1 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/e7/058893390f5f2994544aeed01a17efa1cc3abe and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/e7/058893390f5f2994544aeed01a17efa1cc3abe differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/ea/d39c4bc957b763f7877a9f3de875a16d1de846 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/ea/d39c4bc957b763f7877a9f3de875a16d1de846 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/ed/3270da59eee67d28d4c4c8c69b7126457b8747 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/ed/3270da59eee67d28d4c4c8c69b7126457b8747 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/f0/98d694d1888001d6904705c7cf05192a8a3990 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/f0/98d694d1888001d6904705c7cf05192a8a3990 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/f1/3f58c37b8cc5b248721fbe2c5fe2a71eca8ae6 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/f1/3f58c37b8cc5b248721fbe2c5fe2a71eca8ae6 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/f2/21c2ac5572ea84ed262b73f1fc7c3f34c8891d and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/f2/21c2ac5572ea84ed262b73f1fc7c3f34c8891d differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/f3/477a84f7ac92fb5f6265324a74f573ba8169a6 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/f3/477a84f7ac92fb5f6265324a74f573ba8169a6 differ diff -Nru dell-linux-assistant-2.2.0544/.git/objects/f3/d960bfd968f33f57966891135f848281566142 dell-linux-assistant-2.2.0548/.git/objects/f3/d960bfd968f33f57966891135f848281566142 --- dell-linux-assistant-2.2.0544/.git/objects/f3/d960bfd968f33f57966891135f848281566142 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/objects/f3/d960bfd968f33f57966891135f848281566142 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -xj0{/1u$J)=c wZ-Cq O01q,S]DSG4$h:hts"z)6[*BGvmJZ9j[,S~Gnޓ C а':x֬bau^^\~ VR&N` \ No newline at end of file Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/f6/322183463cc18643dc1044f08767a78a7e62a8 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/f6/322183463cc18643dc1044f08767a78a7e62a8 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/f6/3242cf5268031c3c04bb2e31da670a319d21ee and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/f6/3242cf5268031c3c04bb2e31da670a319d21ee differ diff -Nru dell-linux-assistant-2.2.0544/.git/objects/f8/a279f949ee8cfd47b79f94a4008099a33e8d01 dell-linux-assistant-2.2.0548/.git/objects/f8/a279f949ee8cfd47b79f94a4008099a33e8d01 --- dell-linux-assistant-2.2.0544/.git/objects/f8/a279f949ee8cfd47b79f94a4008099a33e8d01 2020-06-28 08:53:10.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/objects/f8/a279f949ee8cfd47b79f94a4008099a33e8d01 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -xMK0=W xX&MT?:M]?y!hZ{R2:rR[%5FW£İ3M0X@ӚwmgT+^poZR_?iՂ1˴ĝH{*>ex ;rnf?b+O1].++BZƪT=4g:8m$n^6y(OQ- p$ EmJHc';ն~~z9S[' Lч#|P>;eŢF>ᘎ \ No newline at end of file Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/fb/162bc228d9fa258162f574bf9b40a3bc1f526f and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/fb/162bc228d9fa258162f574bf9b40a3bc1f526f differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/fd/3fa92626eff559f8142550607dce6510503a99 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/fd/3fa92626eff559f8142550607dce6510503a99 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/fd/e97f7f0e4f3827973e8c6babe51b9c3a99e263 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/fd/e97f7f0e4f3827973e8c6babe51b9c3a99e263 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/fe/5634ecd471927f6475f097bd2338eb887d4718 and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/fe/5634ecd471927f6475f097bd2338eb887d4718 differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/pack/pack-2bcb27a013b78438a16f77d1f91f7181f4915747.idx and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/pack/pack-2bcb27a013b78438a16f77d1f91f7181f4915747.idx differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/pack/pack-2bcb27a013b78438a16f77d1f91f7181f4915747.pack and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/pack/pack-2bcb27a013b78438a16f77d1f91f7181f4915747.pack differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/pack/pack-8e8123a1c8a93eb5318404f2d3839bab507c0ad5.idx and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/pack/pack-8e8123a1c8a93eb5318404f2d3839bab507c0ad5.idx differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/pack/pack-8e8123a1c8a93eb5318404f2d3839bab507c0ad5.pack and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/pack/pack-8e8123a1c8a93eb5318404f2d3839bab507c0ad5.pack differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/pack/pack-b007b9e4504bf806ca108594f8754833b8b32560.idx and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/pack/pack-b007b9e4504bf806ca108594f8754833b8b32560.idx differ Binary files /tmp/tmpSQmS3O/Teswa5ct9D/dell-linux-assistant-2.2.0544/.git/objects/pack/pack-b007b9e4504bf806ca108594f8754833b8b32560.pack and /tmp/tmpSQmS3O/Ylv7mru4ze/dell-linux-assistant-2.2.0548/.git/objects/pack/pack-b007b9e4504bf806ca108594f8754833b8b32560.pack differ diff -Nru dell-linux-assistant-2.2.0544/.git/ORIG_HEAD dell-linux-assistant-2.2.0548/.git/ORIG_HEAD --- dell-linux-assistant-2.2.0544/.git/ORIG_HEAD 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/ORIG_HEAD 2020-11-17 08:03:24.000000000 +0000 @@ -1 +1 @@ -7fc45e65f7f31ac1ca73cb90636b536648d37602 +25b60448bf3dd5317b8ca1222af7daa224e75a27 diff -Nru dell-linux-assistant-2.2.0544/.git/packed-refs dell-linux-assistant-2.2.0548/.git/packed-refs --- dell-linux-assistant-2.2.0544/.git/packed-refs 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/packed-refs 2020-11-17 07:50:28.000000000 +0000 @@ -1,17 +1,26 @@ # pack-refs with: peeled fully-peeled sorted +3b4ffb16b6502b80010cce68ca2c871106e0fdd5 refs/remotes/origin/bugfix/depends_fix ed9eee9d8993fa338d35c7bb61d92f174e0900fb refs/remotes/origin/bugfix/rc-2.1 +2d7d68137f3353a3f4755709fd2a9e1ea07adef5 refs/remotes/origin/bugfix/rc_2.2.0438 +a704c5932587b41117bf2d8136b96e1417ccecf9 refs/remotes/origin/feature/commercial_expansion 627656d0eb3ba1e5c490d2e325b35409e701ad97 refs/remotes/origin/feature/osri c57206ec5d92ecf06712b56410bfd0ad8bf7a7da refs/remotes/origin/feature/osri_backup +aeff72bae6d198ab2047a24d207d9c3b31beaa22 refs/remotes/origin/feature/performance_imp eaabfc17bdc7c8999e2075b0e0b2dad4a2d91e29 refs/remotes/origin/feature/rc_2.1.01 65305d3c94089c8a56845b028696d2fcfb2dd9fe refs/remotes/origin/feature/rc_2.2.01 a35f1c404d0c26d39ab9ced295f5c897ec81e616 refs/remotes/origin/feature/rc_2.2.02 +5995aca11766b899cf69013550f54f7e64a6b02c refs/remotes/origin/feature/rc_2.2.05 bce2ed0f574815147573fc8cd5ec3b9f8a40e741 refs/remotes/origin/feature/reg_precache aa558367d01930fc77bff2d9efed88e6503cd35f refs/remotes/origin/feature/reminder ed5556de1d5f2c475502b2b470e9c595e4dcd9b9 refs/remotes/origin/feature/unit-test 5c3ccb4ee8c7df2727d6fa82ccc087ec41c47316 refs/remotes/origin/feature/user_reg e195616c2321da88993bd1ff337c52ca11f321ee refs/remotes/origin/hackathon -c6c8b5bfced7ce0ee51ac3802a305a5f2f1e7a4e refs/remotes/origin/master -288a209e2104c974d684eb9702e4d6722e30b69c refs/remotes/origin/release/formal-server +174be81a86d1f01c7daa8bd53217653aa873f0e5 refs/remotes/origin/hotfix/2.2.0435_bionic +7fc45e65f7f31ac1ca73cb90636b536648d37602 refs/remotes/origin/hotfix/2.2.0435_focal +1da4f8f36c57714abe9a338104f5f651c3cd5a9f refs/remotes/origin/master +2759423bf01d687653155cb163dc4e3ea1c18e94 refs/remotes/origin/release/formal-server +51dda54308f766c419277ee34eca39313f75c2a0 refs/remotes/origin/release/production-bionic +25b60448bf3dd5317b8ca1222af7daa224e75a27 refs/remotes/origin/release/production-focal 410c960498655980a851cea587299f0c7bbdd300 refs/remotes/origin/release/test-server a1de7ed18f1d8b87348b8bec8747a8c9649668bb refs/remotes/origin/restructure 2100c45c4ca15de908587aa1c76a4d3e88142176 refs/remotes/origin/user_registration @@ -21,3 +30,11 @@ ^ead4201af72604a39b121cdb87d94c1177ed9466 fa567d4206c14e384a21ee9875f07a666a553f9c refs/tags/v2.2.0052 ^6897d25bd19058a5f447c37bb15a7454d31f02af +a71e3089b0f919a828f38c1403b2f6c748ad6bbb refs/tags/v2.2.02 +^2759423bf01d687653155cb163dc4e3ea1c18e94 +a66452e68ff368869d577a513b457141dad8e10d refs/tags/v2.2.0221 +^c2abf8557d562d7a9f046bd9ca17cda3b7dbefeb +76cc939990682829d06a022510a5a3cb11bca04d refs/tags/v2.2.0422 +^9148b5e0b50d4f2326cc53bdf58c78ef28ade6b1 +27ec487af06a5823f308cefb4e2b81b35bdbc75f refs/tags/v2.2.0533 +^d39b16caa1a6307a578b0987c68a9aa503a8ead3 diff -Nru dell-linux-assistant-2.2.0544/.git/refs/heads/master dell-linux-assistant-2.2.0548/.git/refs/heads/master --- dell-linux-assistant-2.2.0544/.git/refs/heads/master 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/refs/heads/master 2020-11-17 07:50:28.000000000 +0000 @@ -1 +1 @@ -4656824fb01bb95b31573964faa2a107c85115d9 +1da4f8f36c57714abe9a338104f5f651c3cd5a9f diff -Nru dell-linux-assistant-2.2.0544/.git/refs/heads/release/production-bionic dell-linux-assistant-2.2.0548/.git/refs/heads/release/production-bionic --- dell-linux-assistant-2.2.0544/.git/refs/heads/release/production-bionic 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/refs/heads/release/production-bionic 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -9499e93e9ff4f7e412e609e4e9c73cae7daf28db diff -Nru dell-linux-assistant-2.2.0544/.git/refs/heads/release/production-focal dell-linux-assistant-2.2.0548/.git/refs/heads/release/production-focal --- dell-linux-assistant-2.2.0544/.git/refs/heads/release/production-focal 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/refs/heads/release/production-focal 2020-11-17 08:56:02.000000000 +0000 @@ -1 +1 @@ -25b60448bf3dd5317b8ca1222af7daa224e75a27 +a157e753dbfb406840f821c55e51c9aaf73197e9 diff -Nru dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/bugfix/rc_2.2.0438 dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/bugfix/rc_2.2.0438 --- dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/bugfix/rc_2.2.0438 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/bugfix/rc_2.2.0438 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -2d7d68137f3353a3f4755709fd2a9e1ea07adef5 diff -Nru dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/feature/commercial_expansion dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/feature/commercial_expansion --- dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/feature/commercial_expansion 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/feature/commercial_expansion 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -a704c5932587b41117bf2d8136b96e1417ccecf9 diff -Nru dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/feature/performance_imp dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/feature/performance_imp --- dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/feature/performance_imp 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/feature/performance_imp 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -aeff72bae6d198ab2047a24d207d9c3b31beaa22 diff -Nru dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/feature/rc_2.2.05 dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/feature/rc_2.2.05 --- dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/feature/rc_2.2.05 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/feature/rc_2.2.05 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -5995aca11766b899cf69013550f54f7e64a6b02c diff -Nru dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/hotfix/2.2.0435_bionic dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/hotfix/2.2.0435_bionic --- dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/hotfix/2.2.0435_bionic 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/hotfix/2.2.0435_bionic 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -174be81a86d1f01c7daa8bd53217653aa873f0e5 diff -Nru dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/hotfix/2.2.0435_focal dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/hotfix/2.2.0435_focal --- dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/hotfix/2.2.0435_focal 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/hotfix/2.2.0435_focal 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -7fc45e65f7f31ac1ca73cb90636b536648d37602 diff -Nru dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/master dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/master --- dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/master 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/master 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -9d23aa6f5c1c566cd3deb52dea6edd4290210d59 diff -Nru dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/release/formal-server dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/release/formal-server --- dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/release/formal-server 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/release/formal-server 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -2759423bf01d687653155cb163dc4e3ea1c18e94 diff -Nru dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/release/production-bionic dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/release/production-bionic --- dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/release/production-bionic 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/release/production-bionic 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -a6dfe7c47c0eaae0611fb0f6557b7c1aad90b040 diff -Nru dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/release/production-focal dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/release/production-focal --- dell-linux-assistant-2.2.0544/.git/refs/remotes/origin/release/production-focal 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/refs/remotes/origin/release/production-focal 2020-11-17 08:56:12.000000000 +0000 @@ -1 +1 @@ -25b60448bf3dd5317b8ca1222af7daa224e75a27 +a157e753dbfb406840f821c55e51c9aaf73197e9 diff -Nru dell-linux-assistant-2.2.0544/.git/refs/tags/v2.2.02 dell-linux-assistant-2.2.0548/.git/refs/tags/v2.2.02 --- dell-linux-assistant-2.2.0544/.git/refs/tags/v2.2.02 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/refs/tags/v2.2.02 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -a71e3089b0f919a828f38c1403b2f6c748ad6bbb diff -Nru dell-linux-assistant-2.2.0544/.git/refs/tags/v2.2.0221 dell-linux-assistant-2.2.0548/.git/refs/tags/v2.2.0221 --- dell-linux-assistant-2.2.0544/.git/refs/tags/v2.2.0221 2020-05-28 13:17:53.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/refs/tags/v2.2.0221 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -a66452e68ff368869d577a513b457141dad8e10d diff -Nru dell-linux-assistant-2.2.0544/.git/refs/tags/v2.2.0422 dell-linux-assistant-2.2.0548/.git/refs/tags/v2.2.0422 --- dell-linux-assistant-2.2.0544/.git/refs/tags/v2.2.0422 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/refs/tags/v2.2.0422 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -76cc939990682829d06a022510a5a3cb11bca04d diff -Nru dell-linux-assistant-2.2.0544/.git/refs/tags/v2.2.0533 dell-linux-assistant-2.2.0548/.git/refs/tags/v2.2.0533 --- dell-linux-assistant-2.2.0544/.git/refs/tags/v2.2.0533 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/.git/refs/tags/v2.2.0533 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -27ec487af06a5823f308cefb4e2b81b35bdbc75f diff -Nru dell-linux-assistant-2.2.0544/MANIFEST dell-linux-assistant-2.2.0548/MANIFEST --- dell-linux-assistant-2.2.0544/MANIFEST 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/MANIFEST 2020-11-17 08:54:32.000000000 +0000 @@ -104,7 +104,7 @@ LICENSES/GPL-3 LICENSES/LICENSE.ApschedulerStandalone.txt LICENSES/LICENSE.txt -apt.source/somerville-dla-team-ubuntu-ppa-bionic.list +apt.source/somerville-dla-team-ubuntu-ppa-focal.list apt.source/somerville-dla-team_ubuntu_ppa.gpg backend/com.dell.LinuxAssistant.conf backend/com.dell.LinuxAssistant.policy diff -Nru dell-linux-assistant-2.2.0544/setup.py dell-linux-assistant-2.2.0548/setup.py --- dell-linux-assistant-2.2.0544/setup.py 2020-09-13 14:46:04.000000000 +0000 +++ dell-linux-assistant-2.2.0548/setup.py 2020-11-17 08:46:26.000000000 +0000 @@ -61,7 +61,7 @@ ('share/polkit-1/actions', glob.glob('backend/*.policy')), ('lib/x86_64-linux-gnu/dell-linux-assistant', glob.glob("DellLinuxAssistant/*.so")), ('/etc/systemd/system/',['DellLinuxAssistant/systemd/dell-linux-assistant.service']), - ('/etc/apt/sources.list.d/', ['apt.source/somerville-dla-team-ubuntu-ppa-bionic.list']), + ('/etc/apt/sources.list.d/', ['apt.source/somerville-dla-team-ubuntu-ppa-focal.list']), ('/etc/apt/trusted.gpg.d/', ['apt.source/somerville-dla-team_ubuntu_ppa.gpg'])], scripts=["dell-linux-assistantd", "dell-linux-assistant", "stop-dell-linux-assistantd", "dell-linux-assistant-registration-noitfy"],