[Bug 1272313] Re: There is no way to stop a check for update for ubuntu images

2016-09-02 Thread Jonas G. Drange
** Changed in: ubuntu-system-settings (Ubuntu)
   Status: Triaged => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1272313

Title:
  There is no way to stop a check for update for ubuntu images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-system-image/+bug/1272313/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1272313] Re: There is no way to stop a check for update for ubuntu images

2016-08-19 Thread Jonas G. Drange
** Branch linked: lp:~jonas-drange/ubuntu-system-settings/updates-
rewrite

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1272313

Title:
  There is no way to stop a check for update for ubuntu images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-system-image/+bug/1272313/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1272313] Re: There is no way to stop a check for update for ubuntu images

2014-07-17 Thread Pat McGowan
** Tags added: updates

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1272313

Title:
  There is no way to stop a check for update for ubuntu images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-system-image/+bug/1272313/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1272313] Re: There is no way to stop a check for update for ubuntu images

2014-06-23 Thread Barry Warsaw
** Changed in: ubuntu-system-image
   Status: New => Triaged

** Changed in: ubuntu-system-image
   Importance: Undecided => Low

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1272313

Title:
  There is no way to stop a check for update for ubuntu images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-system-image/+bug/1272313/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1272313] Re: There is no way to stop a check for update for ubuntu images

2014-06-17 Thread Barry Warsaw
** Tags added: client

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1272313

Title:
  There is no way to stop a check for update for ubuntu images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-system-image/+bug/1272313/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1272313] Re: There is no way to stop a check for update for ubuntu images

2014-06-17 Thread Matthew Paul Thomas
** Description changed:

- The designs requires to stop the process of "checking for updates": 
https://wiki.ubuntu.com/SoftwareUpdates#Phone
+ The designs requires to stop the process of "checking for updates".
  But the system image update service doesn't provide anyway to call a function 
to do that.
+ 
+ : "At
+ the top of the screen (replacing the “Install All” button, if it was
+ present) should be a “Checking for updates…” spinner and a “Stop”
+ button."

** Changed in: ubuntu-system-settings (Ubuntu)
   Status: Confirmed => Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1272313

Title:
  There is no way to stop a check for update for ubuntu images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-system-image/+bug/1272313/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Re: [Bug 1272313] Re: There is no way to stop a check for update for ubuntu images

2014-02-04 Thread Barry Warsaw
On Feb 04, 2014, at 09:38 AM, Matthew Paul Thomas wrote:

>If checking for an update is a multi-step process, that's excellent
>news, because it means the progress display can be determinate rather
>than just a spinner. Like the ability to stop, I guess that would
>require an extra dbus method to ask "how far through are you right now".
>Reported bug 1276061 for that.

The tricky part is that we won't know how many steps are involved ahead of
time.  For example, let's say we have three of the four keys already when we
start the check.  The first thing we do is download the blacklist, and if one
of the three keys is now on the blacklist, we'll have an extra step to
download a replacement.  Also, it's possible that once we've downloaded the
first key, it might make subsequent key checks fail validation.

There's an upper limit to the number of things we have to download during the
check though, so we could just emit something like:

step 1 of 7
step 2 of 7
(steps 3-5 can be skipped so...)
step 6 of 7
step 7 of 7

It might make the display a bit jumpy, but it would be feasible without much
work.  For backward compatibility we'd have to add new dbus signals for these
progress steps.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1272313

Title:
  There is no way to stop a check for update for ubuntu images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-system-image/+bug/1272313/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1272313] Re: There is no way to stop a check for update for ubuntu images

2014-02-04 Thread Matthew Paul Thomas
** Changed in: ubuntu-system-settings (Ubuntu)
 Assignee: Matthew Paul Thomas (mpt) => (unassigned)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1272313

Title:
  There is no way to stop a check for update for ubuntu images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-system-image/+bug/1272313/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1272313] Re: There is no way to stop a check for update for ubuntu images

2014-02-04 Thread Matthew Paul Thomas
If checking for an update is a multi-step process, that's excellent
news, because it means the progress display can be determinate rather
than just a spinner. Like the ability to stop, I guess that would
require an extra dbus method to ask "how far through are you right now".
Reported bug 1276061 for that.

In the meantime, let's treat the Stop button the same as anything else
in System Settings that isn't implemented: don't show the UI until it is
implemented.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1272313

Title:
  There is no way to stop a check for update for ubuntu images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-system-image/+bug/1272313/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1272313] Re: There is no way to stop a check for update for ubuntu images

2014-02-03 Thread Barry Warsaw
On Feb 03, 2014, at 12:11 PM, Manuel de la Peña wrote:

>I have talked with barry and the check is an operation with several
>steps and adding such a feature (cancelling/stopping the check) might
>take some time to land. Is not impossible and we should do it, is just
>hard and will take time and a possible plan B should be considered.

Checking for whether an update is available is a complicated, multi-step
process.  For example, there are potentially 4 gpg keyring files that must be
present, but only one that is shipped with the image, so the "check for update
available" process must be able to backtrack and download any missing keys.
It's surprisingly complicated!

The biggest challenge with adding a stop method during update available checks
is that all the various combinations and backtracking must be tested, so
that's a lot of additionally complicated test code to add.  It's not
insurmountable -- I just have to find the cycles to tackle it.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1272313

Title:
  There is no way to stop a check for update for ubuntu images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-system-image/+bug/1272313/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1272313] Re: There is no way to stop a check for update for ubuntu images

2014-02-03 Thread Manuel de la Peña
> What do you mean by "can't stop the check"? I understand why the ability to 
> stop might not be implemented yet, but I don't see 
> why it would be impossible to implement.
>
> Compare the installation of packages in Ubuntu Software Center: even though 
> the installation is performed by a separate 
> service (aptdaemon), a Stop button is still present in the Progress screen.

Probably means that there is no dbus method to stop the check and
therefore cannot be stopped with the current implementation of the dbus
service from the system-image-updates. Therefore there is going to be
some time in  which this feature in system settings cannot be
implemented until a patch is sent to the code that really deals with
updates.

I have talked with barry and the check is an operation with several
steps and adding such a feature (cancelling/stopping the check) might
take some time to land. Is not impossible and we should do it, is just
hard and will take time and a possible plan B should be considered.

Diego, am I wrong?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1272313

Title:
  There is no way to stop a check for update for ubuntu images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-system-image/+bug/1272313/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1272313] Re: There is no way to stop a check for update for ubuntu images

2014-02-03 Thread Matthew Paul Thomas
What do you mean by "can't stop the check"? I understand why the ability
to stop might not be implemented yet, but I don't see why it would be
impossible to implement.

Compare the installation of packages in Ubuntu Software Center: even
though the installation is performed by a separate service (aptdaemon),
a Stop button is still present in the Progress screen.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1272313

Title:
  There is no way to stop a check for update for ubuntu images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-system-image/+bug/1272313/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1272313] Re: There is no way to stop a check for update for ubuntu images

2014-01-24 Thread Sebastien Bacher
Thank you for your bug report.

Hey Matthew, what would you recommend doing in the UI if we can't stop
the check, just not have a button I guess?

Barry, I'm added the system image component to the bug, the design has a
"stop" button for "check update", it might be a feature to add to the
service?

** Also affects: ubuntu-system-image
   Importance: Undecided
   Status: New

** Changed in: ubuntu-system-settings (Ubuntu)
   Importance: Undecided => Low

** Changed in: ubuntu-system-settings (Ubuntu)
   Status: New => Confirmed

** Changed in: ubuntu-system-settings (Ubuntu)
 Assignee: (unassigned) => Matthew Paul Thomas (mpt)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1272313

Title:
  There is no way to stop a check for update for ubuntu images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-system-image/+bug/1272313/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs