New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change default Debian Stretch Xwrapper config to prevent breaking qubes-gui #2370

Closed
andrewdavidwong opened this Issue Oct 9, 2016 · 33 comments

Comments

@andrewdavidwong
Member

andrewdavidwong commented Oct 9, 2016

Branched from: #1981 (comment) by @yilmi


In Debian Stretch, the default wrapper configuration in /etc/X11/Xwrapper.conf should be:

allowed_users = anybody
needs_root_rights = no
@adrelanos

This comment has been minimized.

Show comment
Hide comment
@adrelanos

adrelanos Oct 10, 2016

Member

Modifications of user configuration files such as /etc/X11/Xwrapper.conf is always problematic. (Causes interactive dpkg conflict resolution dialogs.)

Is there something like /etc/X11/Xwrapper.conf.d?

Alternatively I guess it would be better to config-package-dev displace /usr/lib/xorg/Xorg.wrap.

Relevant apt-file list xserver-xorg-legacy:

xserver-xorg-legacy: /usr/lib/xorg/Xorg.wrap
Member

adrelanos commented Oct 10, 2016

Modifications of user configuration files such as /etc/X11/Xwrapper.conf is always problematic. (Causes interactive dpkg conflict resolution dialogs.)

Is there something like /etc/X11/Xwrapper.conf.d?

Alternatively I guess it would be better to config-package-dev displace /usr/lib/xorg/Xorg.wrap.

Relevant apt-file list xserver-xorg-legacy:

xserver-xorg-legacy: /usr/lib/xorg/Xorg.wrap
@adrelanos

This comment has been minimized.

Show comment
Hide comment
@adrelanos

adrelanos Oct 10, 2016

Member

The /etc/X11/Xwrapper.conf modifications didn't work for me. But sudo mv /usr/lib/xorg/Xorg.wrap ~/ worked for me.

So let's go with config-package-dev displace /usr/lib/xorg/Xorg.wrap?

Member

adrelanos commented Oct 10, 2016

The /etc/X11/Xwrapper.conf modifications didn't work for me. But sudo mv /usr/lib/xorg/Xorg.wrap ~/ worked for me.

So let's go with config-package-dev displace /usr/lib/xorg/Xorg.wrap?

@yilmi

This comment has been minimized.

Show comment
Hide comment
@yilmi

yilmi Oct 10, 2016

If /usr/lib/xorg/Xorg.wrap is present it will always be used as default Xorg binary, so we'll go again through /etc/X11/Xwrapper.conf

It seems that Qubes doesn't need to run Xorg as root (see qubes-run-xorg.sh) so in our case the wrapper is useless.

config-package-dev displace on /usr/lib/xorg/Xorg.wrap sound safe.

yilmi commented Oct 10, 2016

If /usr/lib/xorg/Xorg.wrap is present it will always be used as default Xorg binary, so we'll go again through /etc/X11/Xwrapper.conf

It seems that Qubes doesn't need to run Xorg as root (see qubes-run-xorg.sh) so in our case the wrapper is useless.

config-package-dev displace on /usr/lib/xorg/Xorg.wrap sound safe.

adrelanos added a commit to adrelanos/qubes-gui-agent-linux that referenced this issue Oct 10, 2016

add xserver-xorg-legacy compatibility
add config-package-dev displace /usr/lib/xorg/Xorg.wrap

fixes QubesOS/qubes-issues#2370

@adrelanos adrelanos referenced this issue in marmarek/old-qubes-gui-agent-linux Oct 10, 2016

Closed

add xserver-xorg-legacy compatibility #20

@adrelanos

This comment has been minimized.

Show comment
Hide comment
@marmarek

This comment has been minimized.

Show comment
Hide comment
@marmarek

marmarek Oct 10, 2016

Member

What about getting rid of xserver-xorg-legacy? Conflicts: xserver-xorg-legacy?

Member

marmarek commented Oct 10, 2016

What about getting rid of xserver-xorg-legacy? Conflicts: xserver-xorg-legacy?

@yilmi

This comment has been minimized.

Show comment
Hide comment
@yilmi

yilmi Oct 10, 2016

In kali templates, we can't remove it without breaking kali-linux dependencies, the kali-linux meta-package will install packages that depend on xserver-xorg-legacy. (kali-desktop-common)

yilmi commented Oct 10, 2016

In kali templates, we can't remove it without breaking kali-linux dependencies, the kali-linux meta-package will install packages that depend on xserver-xorg-legacy. (kali-desktop-common)

@adrelanos

This comment has been minimized.

Show comment
Hide comment
@adrelanos

adrelanos Oct 31, 2016

Member

What about getting rid of xserver-xorg-legacy? Conflicts: xserver-xorg-legacy?

That would prevent the kali-linux package from being installed at the same time as qubes-gui-agent.

What could work however is qubes-gui-agent using Provides: xserver-xorg-legacy. Then the kali-linux package should no longer pull in xserver-xorg-legacy since it already is provided.

Member

adrelanos commented Oct 31, 2016

What about getting rid of xserver-xorg-legacy? Conflicts: xserver-xorg-legacy?

That would prevent the kali-linux package from being installed at the same time as qubes-gui-agent.

What could work however is qubes-gui-agent using Provides: xserver-xorg-legacy. Then the kali-linux package should no longer pull in xserver-xorg-legacy since it already is provided.

@marmarek

This comment has been minimized.

Show comment
Hide comment
@marmarek

marmarek Oct 31, 2016

Member

What could work however is qubes-gui-agent using Provides: xserver-xorg-legacy. Then the kali-linux package should no longer pull in xserver-xorg-legacy since it already is provided.

Is this better solution? I feel it should be better than modifying/moving file belonging to other package. But that feeling is mostly based on rpm experience.

Member

marmarek commented Oct 31, 2016

What could work however is qubes-gui-agent using Provides: xserver-xorg-legacy. Then the kali-linux package should no longer pull in xserver-xorg-legacy since it already is provided.

Is this better solution? I feel it should be better than modifying/moving file belonging to other package. But that feeling is mostly based on rpm experience.

@adrelanos

This comment has been minimized.

Show comment
Hide comment
@adrelanos

adrelanos Oct 31, 2016

Member

Marek Marczykowski-Górecki:

What could work however is qubes-gui-agent using Provides: xserver-xorg-legacy. Then the kali-linux package should no longer pull in xserver-xorg-legacy since it already is provided.

Is this better solution? I feel it should be better than modifying/moving file belonging to other package. But that feeling is mostly based on rpm experience.

If that works it should be better indeed. Didn't occur to me earlier
when I wrote above PR.

Maybe qubes-gui-agent should use both:
Provides: xserver-xorg-legacy
Conflicts: xserver-xorg-legacy

I guess we'd have to test various cases.

Case one is xserver-xorg-legacy already installed, then installing newer
qubes-gui-agent.

Case two is having newer qubes-gui-agent already installed, then pulling
kali-linux and see if that stops pulling xserver-xorg-legacy and
otherwise complaining.

Case three is having newer qubes-gui-agent already installed and
manually trying to install xserver-xorg-legacy. Ideally nothing would
happen. Though this use case my not apply to our situation here.

Member

adrelanos commented Oct 31, 2016

Marek Marczykowski-Górecki:

What could work however is qubes-gui-agent using Provides: xserver-xorg-legacy. Then the kali-linux package should no longer pull in xserver-xorg-legacy since it already is provided.

Is this better solution? I feel it should be better than modifying/moving file belonging to other package. But that feeling is mostly based on rpm experience.

If that works it should be better indeed. Didn't occur to me earlier
when I wrote above PR.

Maybe qubes-gui-agent should use both:
Provides: xserver-xorg-legacy
Conflicts: xserver-xorg-legacy

I guess we'd have to test various cases.

Case one is xserver-xorg-legacy already installed, then installing newer
qubes-gui-agent.

Case two is having newer qubes-gui-agent already installed, then pulling
kali-linux and see if that stops pulling xserver-xorg-legacy and
otherwise complaining.

Case three is having newer qubes-gui-agent already installed and
manually trying to install xserver-xorg-legacy. Ideally nothing would
happen. Though this use case my not apply to our situation here.

@marmarek

This comment has been minimized.

Show comment
Hide comment
@marmarek

marmarek Nov 1, 2016

Member

Both Provides: and Conflicts:

Case three is having newer qubes-gui-agent already installed and manually trying to install xserver-xorg-legacy. Ideally nothing would happen. Though this use case my not apply to our situation here.

It tries to replace qubes-gui-agent with xserver-xorg-legacy

Case one is xserver-xorg-legacy already installed, then installing newer qubes-gui-agent.

Upgrade of qubes-gui-agent is prevented, even with apt-get dist-upgrade.

Case two is having newer qubes-gui-agent already installed, then pulling kali-linux and see if that stops pulling xserver-xorg-legacy and otherwise complaining.

This is the only case when it does the job. kali-linux is installed without problem and no longer pulls xserver-xorg-legacy.

Just Provides:

Case one is xserver-xorg-legacy already installed, then installing newer qubes-gui-agent.

qubes-gui-agent is upgraded normally, but xserver-xorg-legacy is not removed. Then it can be removed manually, without removing kali-linux.

Case two is having newer qubes-gui-agent already installed, then pulling kali-linux and see if that stops pulling xserver-xorg-legacy and otherwise complaining.

This works fine.

Case three is having newer qubes-gui-agent already installed and manually trying to install xserver-xorg-legacy. Ideally nothing would happen. Though this use case my not apply to our situation here.

xserver-xorg-legacy is installed normally, no other effects.

Provides:, Conflicts: and Replaces:

This idea is based on https://www.debian.org/doc/debian-policy/ch-relationships.html#s7.6.2

Case one is xserver-xorg-legacy already installed, then installing newer qubes-gui-agent.

xserver-xorg-legacy is not removed, qubes-gui-agent upgrade is prevented (both apt-get upgrade and apt-get dist-upgrade).

Case two is having newer qubes-gui-agent already installed, then pulling kali-linux and see if that stops pulling xserver-xorg-legacy and otherwise complaining.

xserver-xorg-legacy is no longer installed, kali-linux is installed correctly.

Case three is having newer qubes-gui-agent already installed and manually trying to install xserver-xorg-legacy. Ideally nothing would happen. Though this use case my not apply to our situation here.

Installation of xserver-xorg-legacy removes qubes-gui-agent.

Conclusion

I think the best option from the above is just Provides: xserver-xorg-legacy. For people having Kali already installed, they have already modified /etc/X11/Xwrapper.conf manually, so shouldn't be a problem. What do you think @adrelanos @unman ?

Member

marmarek commented Nov 1, 2016

Both Provides: and Conflicts:

Case three is having newer qubes-gui-agent already installed and manually trying to install xserver-xorg-legacy. Ideally nothing would happen. Though this use case my not apply to our situation here.

It tries to replace qubes-gui-agent with xserver-xorg-legacy

Case one is xserver-xorg-legacy already installed, then installing newer qubes-gui-agent.

Upgrade of qubes-gui-agent is prevented, even with apt-get dist-upgrade.

Case two is having newer qubes-gui-agent already installed, then pulling kali-linux and see if that stops pulling xserver-xorg-legacy and otherwise complaining.

This is the only case when it does the job. kali-linux is installed without problem and no longer pulls xserver-xorg-legacy.

Just Provides:

Case one is xserver-xorg-legacy already installed, then installing newer qubes-gui-agent.

qubes-gui-agent is upgraded normally, but xserver-xorg-legacy is not removed. Then it can be removed manually, without removing kali-linux.

Case two is having newer qubes-gui-agent already installed, then pulling kali-linux and see if that stops pulling xserver-xorg-legacy and otherwise complaining.

This works fine.

Case three is having newer qubes-gui-agent already installed and manually trying to install xserver-xorg-legacy. Ideally nothing would happen. Though this use case my not apply to our situation here.

xserver-xorg-legacy is installed normally, no other effects.

Provides:, Conflicts: and Replaces:

This idea is based on https://www.debian.org/doc/debian-policy/ch-relationships.html#s7.6.2

Case one is xserver-xorg-legacy already installed, then installing newer qubes-gui-agent.

xserver-xorg-legacy is not removed, qubes-gui-agent upgrade is prevented (both apt-get upgrade and apt-get dist-upgrade).

Case two is having newer qubes-gui-agent already installed, then pulling kali-linux and see if that stops pulling xserver-xorg-legacy and otherwise complaining.

xserver-xorg-legacy is no longer installed, kali-linux is installed correctly.

Case three is having newer qubes-gui-agent already installed and manually trying to install xserver-xorg-legacy. Ideally nothing would happen. Though this use case my not apply to our situation here.

Installation of xserver-xorg-legacy removes qubes-gui-agent.

Conclusion

I think the best option from the above is just Provides: xserver-xorg-legacy. For people having Kali already installed, they have already modified /etc/X11/Xwrapper.conf manually, so shouldn't be a problem. What do you think @adrelanos @unman ?

@adrelanos

This comment has been minimized.

Show comment
Hide comment
@adrelanos

adrelanos Nov 1, 2016

Member
Member

adrelanos commented Nov 1, 2016

@unman

This comment has been minimized.

Show comment
Hide comment
@unman

unman Nov 7, 2016

Member

@marmarek Provides: seems a nice simple solution that solves the problem. I'd go for that.

Member

unman commented Nov 7, 2016

@marmarek Provides: seems a nice simple solution that solves the problem. I'd go for that.

@marmarek

This comment has been minimized.

Show comment
Hide comment
@marmarek

marmarek Nov 17, 2016

Member

Automated announcement from builder-github

The package qubes-gui-vm-3.2.7-1.fc23 has been pushed to the r3.2 testing repository for the Fedora fc23 template.
To test this update, please install it with the following command:

sudo yum update --enablerepo=qubes-vm-r3.2-current-testing

Changes included in this update

Member

marmarek commented Nov 17, 2016

Automated announcement from builder-github

The package qubes-gui-vm-3.2.7-1.fc23 has been pushed to the r3.2 testing repository for the Fedora fc23 template.
To test this update, please install it with the following command:

sudo yum update --enablerepo=qubes-vm-r3.2-current-testing

Changes included in this update

@marmarek

This comment has been minimized.

Show comment
Hide comment
@marmarek

marmarek Nov 17, 2016

Member

Automated announcement from builder-github

The package qubes-gui-vm-3.2.7-1.fc24 has been pushed to the r3.2 testing repository for the Fedora fc24 template.
To test this update, please install it with the following command:

sudo yum update --enablerepo=qubes-vm-r3.2-current-testing

Changes included in this update

Member

marmarek commented Nov 17, 2016

Automated announcement from builder-github

The package qubes-gui-vm-3.2.7-1.fc24 has been pushed to the r3.2 testing repository for the Fedora fc24 template.
To test this update, please install it with the following command:

sudo yum update --enablerepo=qubes-vm-r3.2-current-testing

Changes included in this update

@marmarek

This comment has been minimized.

Show comment
Hide comment
@marmarek

marmarek Nov 18, 2016

Member

Automated announcement from builder-github

The package qubes-gui-agent_3.2.7+deb8u1 has been pushed to the r3.2 testing repository for the Debian jessie template.
To test this update, first enable the testing repository in /etc/apt/sources.list.d/qubes-*.list by uncommenting the line containing jessie-testing, then use the standard update command:

sudo apt-get update && sudo apt-get dist-upgrade

Changes included in this update

Member

marmarek commented Nov 18, 2016

Automated announcement from builder-github

The package qubes-gui-agent_3.2.7+deb8u1 has been pushed to the r3.2 testing repository for the Debian jessie template.
To test this update, first enable the testing repository in /etc/apt/sources.list.d/qubes-*.list by uncommenting the line containing jessie-testing, then use the standard update command:

sudo apt-get update && sudo apt-get dist-upgrade

Changes included in this update

@marmarek

This comment has been minimized.

Show comment
Hide comment
@marmarek

marmarek Nov 18, 2016

Member

Automated announcement from builder-github

The package qubes-gui-agent_3.2.7+deb9u1 has been pushed to the r3.2 testing repository for the Debian stretch template.
To test this update, first enable the testing repository in /etc/apt/sources.list.d/qubes-*.list by uncommenting the line containing stretch-testing, then use the standard update command:

sudo apt-get update && sudo apt-get dist-upgrade

Changes included in this update

Member

marmarek commented Nov 18, 2016

Automated announcement from builder-github

The package qubes-gui-agent_3.2.7+deb9u1 has been pushed to the r3.2 testing repository for the Debian stretch template.
To test this update, first enable the testing repository in /etc/apt/sources.list.d/qubes-*.list by uncommenting the line containing stretch-testing, then use the standard update command:

sudo apt-get update && sudo apt-get dist-upgrade

Changes included in this update

@marmarek

This comment has been minimized.

Show comment
Hide comment
@marmarek

marmarek Dec 4, 2016

Member

Automated announcement from builder-github

The package qubes-gui-agent_3.2.8+deb8u1 has been pushed to the r3.2 stable repository for the Debian jessie template.
To install this update, please use the standard update command:

sudo apt-get update && sudo apt-get dist-upgrade

Changes included in this update

Member

marmarek commented Dec 4, 2016

Automated announcement from builder-github

The package qubes-gui-agent_3.2.8+deb8u1 has been pushed to the r3.2 stable repository for the Debian jessie template.
To install this update, please use the standard update command:

sudo apt-get update && sudo apt-get dist-upgrade

Changes included in this update

@marmarek

This comment has been minimized.

Show comment
Hide comment
@marmarek

marmarek Dec 4, 2016

Member

Automated announcement from builder-github

The package qubes-gui-vm-3.2.9-1.fc23 has been pushed to the r3.2 stable repository for the Fedora fc23 template.
To install this update, please use the standard update command:

sudo yum update

Changes included in this update

Member

marmarek commented Dec 4, 2016

Automated announcement from builder-github

The package qubes-gui-vm-3.2.9-1.fc23 has been pushed to the r3.2 stable repository for the Fedora fc23 template.
To install this update, please use the standard update command:

sudo yum update

Changes included in this update

@marmarek

This comment has been minimized.

Show comment
Hide comment
@marmarek

marmarek Dec 4, 2016

Member

Automated announcement from builder-github

The package qubes-gui-vm-3.2.9-1.fc24 has been pushed to the r3.2 stable repository for the Fedora fc24 template.
To install this update, please use the standard update command:

sudo yum update

Changes included in this update

Member

marmarek commented Dec 4, 2016

Automated announcement from builder-github

The package qubes-gui-vm-3.2.9-1.fc24 has been pushed to the r3.2 stable repository for the Fedora fc24 template.
To install this update, please use the standard update command:

sudo yum update

Changes included in this update

@marmarek

This comment has been minimized.

Show comment
Hide comment
@marmarek

marmarek Dec 6, 2016

Member

Automated announcement from builder-github

The package qubes-gui-agent_3.2.8+deb9u1 has been pushed to the r3.2 stable repository for the Debian stretch template.
To install this update, please use the standard update command:

sudo apt-get update && sudo apt-get dist-upgrade

Changes included in this update

Member

marmarek commented Dec 6, 2016

Automated announcement from builder-github

The package qubes-gui-agent_3.2.8+deb9u1 has been pushed to the r3.2 stable repository for the Debian stretch template.
To install this update, please use the standard update command:

sudo apt-get update && sudo apt-get dist-upgrade

Changes included in this update

@marmarek

This comment has been minimized.

Show comment
Hide comment
@marmarek

marmarek Oct 22, 2017

Member

The bug resurfaced on fresh stretch template (no Kali involved).

Member

marmarek commented Oct 22, 2017

The bug resurfaced on fresh stretch template (no Kali involved).

@qubesos-bot

This comment has been minimized.

Show comment
Hide comment
@qubesos-bot

qubesos-bot Nov 3, 2017

Automated announcement from builder-github

The package gui-agent-linux has been pushed to the r4.0 testing repository for the CentOS centos7 template.
To test this update, please install it with the following command:

sudo yum update --enablerepo=qubes-vm-r4.0-current-testing

Changes included in this update

Automated announcement from builder-github

The package gui-agent-linux has been pushed to the r4.0 testing repository for the CentOS centos7 template.
To test this update, please install it with the following command:

sudo yum update --enablerepo=qubes-vm-r4.0-current-testing

Changes included in this update

@qubesos-bot qubesos-bot referenced this issue in QubesOS/updates-status Nov 3, 2017

Closed

gui-agent-linux v4.0.6 (r4.0) #288

@qubesos-bot

This comment has been minimized.

Show comment
Hide comment
@qubesos-bot

qubesos-bot Nov 3, 2017

Automated announcement from builder-github

The package qubes-gui-agent_4.0.6-1+deb8u1 has been pushed to the r4.0 testing repository for the Debian jessie template.
To test this update, first enable the testing repository in /etc/apt/sources.list.d/qubes-*.list by uncommenting the line containing jessie-testing, then use the standard update command:

sudo apt-get update && sudo apt-get dist-upgrade

Changes included in this update

Automated announcement from builder-github

The package qubes-gui-agent_4.0.6-1+deb8u1 has been pushed to the r4.0 testing repository for the Debian jessie template.
To test this update, first enable the testing repository in /etc/apt/sources.list.d/qubes-*.list by uncommenting the line containing jessie-testing, then use the standard update command:

sudo apt-get update && sudo apt-get dist-upgrade

Changes included in this update

@qubesos-bot

This comment has been minimized.

Show comment
Hide comment
@qubesos-bot

qubesos-bot Nov 3, 2017

Automated announcement from builder-github

The package qubes-gui-agent_4.0.6-1+deb9u1 has been pushed to the r4.0 testing repository for the Debian stretch template.
To test this update, first enable the testing repository in /etc/apt/sources.list.d/qubes-*.list by uncommenting the line containing stretch-testing, then use the standard update command:

sudo apt-get update && sudo apt-get dist-upgrade

Changes included in this update

Automated announcement from builder-github

The package qubes-gui-agent_4.0.6-1+deb9u1 has been pushed to the r4.0 testing repository for the Debian stretch template.
To test this update, first enable the testing repository in /etc/apt/sources.list.d/qubes-*.list by uncommenting the line containing stretch-testing, then use the standard update command:

sudo apt-get update && sudo apt-get dist-upgrade

Changes included in this update

@qubesos-bot

This comment has been minimized.

Show comment
Hide comment
@qubesos-bot

qubesos-bot Nov 3, 2017

Automated announcement from builder-github

The package pulseaudio-qubes-4.0.6-1.fc24 has been pushed to the r4.0 testing repository for the Fedora fc24 template.
To test this update, please install it with the following command:

sudo yum update --enablerepo=qubes-vm-r4.0-current-testing

Changes included in this update

Automated announcement from builder-github

The package pulseaudio-qubes-4.0.6-1.fc24 has been pushed to the r4.0 testing repository for the Fedora fc24 template.
To test this update, please install it with the following command:

sudo yum update --enablerepo=qubes-vm-r4.0-current-testing

Changes included in this update

@qubesos-bot

This comment has been minimized.

Show comment
Hide comment
@qubesos-bot

qubesos-bot Nov 3, 2017

Automated announcement from builder-github

The package pulseaudio-qubes-4.0.6-1.fc25 has been pushed to the r4.0 testing repository for the Fedora fc25 template.
To test this update, please install it with the following command:

sudo yum update --enablerepo=qubes-vm-r4.0-current-testing

Changes included in this update

Automated announcement from builder-github

The package pulseaudio-qubes-4.0.6-1.fc25 has been pushed to the r4.0 testing repository for the Fedora fc25 template.
To test this update, please install it with the following command:

sudo yum update --enablerepo=qubes-vm-r4.0-current-testing

Changes included in this update

@qubesos-bot

This comment has been minimized.

Show comment
Hide comment
@qubesos-bot

qubesos-bot Nov 21, 2017

Automated announcement from builder-github

The package pulseaudio-qubes-4.0.7-1.fc26 has been pushed to the r4.0 testing repository for the Fedora fc26 template.
To test this update, please install it with the following command:

sudo yum update --enablerepo=qubes-vm-r4.0-current-testing

Changes included in this update

Automated announcement from builder-github

The package pulseaudio-qubes-4.0.7-1.fc26 has been pushed to the r4.0 testing repository for the Fedora fc26 template.
To test this update, please install it with the following command:

sudo yum update --enablerepo=qubes-vm-r4.0-current-testing

Changes included in this update

@qubesos-bot

This comment has been minimized.

Show comment
Hide comment
@qubesos-bot

qubesos-bot Dec 11, 2017

Automated announcement from builder-github

The package qubes-gui-agent_4.0.7-1+deb8u1 has been pushed to the r4.0 stable repository for the Debian jessie template.
To install this update, please use the standard update command:

sudo apt-get update && sudo apt-get dist-upgrade

Changes included in this update

Automated announcement from builder-github

The package qubes-gui-agent_4.0.7-1+deb8u1 has been pushed to the r4.0 stable repository for the Debian jessie template.
To install this update, please use the standard update command:

sudo apt-get update && sudo apt-get dist-upgrade

Changes included in this update

@qubesos-bot

This comment has been minimized.

Show comment
Hide comment
@qubesos-bot

qubesos-bot Dec 11, 2017

Automated announcement from builder-github

The package qubes-gui-agent_4.0.7-1+deb9u1 has been pushed to the r4.0 stable repository for the Debian stretch template.
To install this update, please use the standard update command:

sudo apt-get update && sudo apt-get dist-upgrade

Changes included in this update

Automated announcement from builder-github

The package qubes-gui-agent_4.0.7-1+deb9u1 has been pushed to the r4.0 stable repository for the Debian stretch template.
To install this update, please use the standard update command:

sudo apt-get update && sudo apt-get dist-upgrade

Changes included in this update

@qubesos-bot

This comment has been minimized.

Show comment
Hide comment
@qubesos-bot

qubesos-bot Dec 11, 2017

Automated announcement from builder-github

The package gui-agent-linux has been pushed to the r4.0 stable repository for the Fedora centos7 template.
To install this update, please use the standard update command:

sudo yum update

Changes included in this update

Automated announcement from builder-github

The package gui-agent-linux has been pushed to the r4.0 stable repository for the Fedora centos7 template.
To install this update, please use the standard update command:

sudo yum update

Changes included in this update

@qubesos-bot

This comment has been minimized.

Show comment
Hide comment
@qubesos-bot

qubesos-bot Dec 12, 2017

Automated announcement from builder-github

The package pulseaudio-qubes-4.0.7-1.fc24 has been pushed to the r4.0 stable repository for the Fedora fc24 template.
To install this update, please use the standard update command:

sudo yum update

Changes included in this update

Automated announcement from builder-github

The package pulseaudio-qubes-4.0.7-1.fc24 has been pushed to the r4.0 stable repository for the Fedora fc24 template.
To install this update, please use the standard update command:

sudo yum update

Changes included in this update

@qubesos-bot

This comment has been minimized.

Show comment
Hide comment
@qubesos-bot

qubesos-bot Dec 12, 2017

Automated announcement from builder-github

The package pulseaudio-qubes-4.0.7-1.fc25 has been pushed to the r4.0 stable repository for the Fedora fc25 template.
To install this update, please use the standard update command:

sudo yum update

Changes included in this update

Automated announcement from builder-github

The package pulseaudio-qubes-4.0.7-1.fc25 has been pushed to the r4.0 stable repository for the Fedora fc25 template.
To install this update, please use the standard update command:

sudo yum update

Changes included in this update

@qubesos-bot

This comment has been minimized.

Show comment
Hide comment
@qubesos-bot

qubesos-bot Dec 12, 2017

Automated announcement from builder-github

The package pulseaudio-qubes-4.0.7-1.fc26 has been pushed to the r4.0 stable repository for the Fedora fc26 template.
To install this update, please use the standard update command:

sudo yum update

Changes included in this update

Automated announcement from builder-github

The package pulseaudio-qubes-4.0.7-1.fc26 has been pushed to the r4.0 stable repository for the Fedora fc26 template.
To install this update, please use the standard update command:

sudo yum update

Changes included in this update

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment