http://bugzilla.suse.com/show_bug.cgi?id=1118068http://bugzilla.suse.com/show_bug.cgi?id=1118068#c3
--- Comment #3 from Konstantin Voinov <kill_it(a)mail.ru> ---
(In reply to Dr. Werner Fink from comment #1)
> Created attachment 791575 [details]
> /etc/systemd/system/syslogd.service
>
> For SLES-15 and Tumbleweed this already fixed a long time
>
> @@ -18,23 +18,19 @@
> Description=System Logging Service
> Conflicts=syslog-ng.service rsyslog.service
> Requires=var-run.mount
> -Requires=syslog.target
> +Requires=syslog.socket
> Requires=network.target
> Requires=klogd.service
> -Before=syslog.target
> Before=klogd.service
> -After=var-run.mount
> -After=network.target
>
> you might test out the attached service unit file, which *after* current
> syslog service has been stopped with systemctl, should be used as
> /etc/systemd/system/syslogd.service by daemon-reload, activation, and start.
>
> Does this work for you?
Attached .service runs syslogd without auto-backgrounding (-n key). That does
not work on 42.3. systemctl doesn't exits after starting:
ExecStart=/usr/sbin/syslogd -n $ADDITIONAL_SOCKET
So, now my syslog.service look like this:
[Unit]
Description=System Logging Service
Conflicts=syslog-ng.service rsyslog.service
Requires=var-run.mount
Requires=syslog.socket
Requires=network.target
Requires=klogd.service
Before=klogd.service
[Service]
Type=notify
Sockets=syslog.socket
StandardOutput=null
Environment=ADDITIONAL_SOCKET=
ExecStartPre=/usr/sbin/syslogd-service-prepare
EnvironmentFile=-/var/run/syslogd/additional-log-sockets.env
ExecStart=/usr/sbin/syslogd $ADDITIONAL_SOCKET
ExecReload=/bin/systemctl kill --signal=TSTP klogd.service
ExecReload=/sbin/killproc -p /var/run/syslogd.pid -HUP /usr/sbin/syslogd
ExecReload=/bin/systemctl kill --signal=CONT klogd.service
ExecReload=/bin/systemctl kill --signal=USR2 klogd.service
[Install]
WantedBy=multi-user.target
Alias=syslog.service
--
You are receiving this mail because:
You are on the CC list for the bug.
http://bugzilla.suse.com/show_bug.cgi?id=1095096
Swamp Workflow Management <swamp(a)suse.de> changed:
What |Removed |Added
----------------------------------------------------------------------------
Whiteboard|ibs:running:8096:moderate |
|maint:planned:update |
--
You are receiving this mail because:
You are on the CC list for the bug.
http://bugzilla.suse.com/show_bug.cgi?id=1116524http://bugzilla.suse.com/show_bug.cgi?id=1116524#c6
Charles Arnold <carnold(a)suse.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution|--- |FIXED
Flags|needinfo?(olafmartens(a)web.d |
|e) |
--- Comment #6 from Charles Arnold <carnold(a)suse.com> ---
This fix is now in Factory. It should show up in a Tumbleweed build soon.
--
You are receiving this mail because:
You are on the CC list for the bug.
http://bugzilla.opensuse.org/show_bug.cgi?id=1110985
Bug ID: 1110985
Summary: TW Plasma Intel driver random freezes
Classification: openSUSE
Product: openSUSE Tumbleweed
Version: Current
Hardware: x86-64
OS: openSUSE Factory
Status: NEW
Severity: Major
Priority: P5 - None
Component: X.Org
Assignee: xorg-maintainer-bugs(a)forge.provo.novell.com
Reporter: sb56637(a)gmail.com
QA Contact: xorg-maintainer-bugs(a)forge.provo.novell.com
Found By: ---
Blocker: ---
Hi, I use Plasma (currently 5.13) on Tumbleweed on a reliable Thinkpad T530
laptop with integrated Intel graphics. (Attaching hwinfo)
I am experiencing random freezes of the Plasma desktop. The mouse still moves,
but no response from clicking anywhere. I tried killing the Plasma shell
related processes in a virtual terminal, but it doesn't help. It's completely
random, but happens several times a day and results in lost work.
I suspect that this is due to a bug in the Xorg Intel driver. I have not tried
the fixes yet, such as switching from SNA to UXA acceleration. First I want to
try switching the KWin compositor from openGL to Xrender, which I just now did.
If that doesn't help, I'll probably just uninstall the Intel driver and use
Xmodesetting.
These are probably related bugs, but from Leap:
- https://bugzilla.opensuse.org/show_bug.cgi?id=945444
- https://bugzilla.opensuse.org/show_bug.cgi?id=1014999
- https://bugzilla.opensuse.org/show_bug.cgi?id=1047716
--
You are receiving this mail because:
You are on the CC list for the bug.
http://bugzilla.suse.com/show_bug.cgi?id=1115640http://bugzilla.suse.com/show_bug.cgi?id=1115640#c21
--- Comment #21 from Swamp Workflow Management <swamp(a)suse.de> ---
SUSE-SU-2018:3965-1: An update that fixes one vulnerability is now available.
Category: security (important)
Bug References: 1115640
CVE References: CVE-2018-17953
Sources used:
SUSE Linux Enterprise Module for Development Tools 15 (src): pam-1.3.0-6.6.1
SUSE Linux Enterprise Module for Basesystem 15 (src): pam-1.3.0-6.6.1
--
You are receiving this mail because:
You are on the CC list for the bug.
http://bugzilla.opensuse.org/show_bug.cgi?id=1052927
Bug ID: 1052927
Summary: python-cryptography requires dependency to
python-setuptools
Classification: openSUSE
Product: openSUSE Distribution
Version: Leap 42.3
Hardware: All
OS: openSUSE 42.3
Status: NEW
Severity: Normal
Priority: P5 - None
Component: Other
Assignee: bnc-team-screening(a)forge.provo.novell.com
Reporter: niko(a)nerdno.de
QA Contact: qa-bugs(a)suse.de
Found By: ---
Blocker: ---
When trying to work with the cryptography module in Python I get the following
error:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File
"/usr/lib64/python2.7/site-packages/cryptography/hazmat/backends/__init__.py",
line 7, in <module>
import pkg_resources
ImportError: No module named pkg_resources
The cryptography backend requires pkg_resources during runtime but it is not
installed as a dependency.
How to reproduce:
# zypper install python-cryptography
# python -c "from cryptography.hazmat.backends import default_backend"
The problem can be resolved by installing python-setuptools.
To fix this more permanently the following should be added to the .spec of
python-cryptography:
Requires: python-setuptools
--
You are receiving this mail because:
You are on the CC list for the bug.
http://bugzilla.opensuse.org/show_bug.cgi?id=1071941
Matej Cepl <mcepl(a)suse.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|CONFIRMED |IN_PROGRESS
--
You are receiving this mail because:
You are on the CC list for the bug.
http://bugzilla.opensuse.org/show_bug.cgi?id=1118034
Bug ID: 1118034
Summary: UnicodeDecodeError: 'ascii' codec can't decode byte
0xc3 in position 1: ordinal not in range(128)
Classification: openSUSE
Product: openSUSE.org
Version: unspecified
Hardware: Other
OS: openSUSE Factory
Status: NEW
Severity: Normal
Priority: P5 - None
Component: BuildService
Assignee: bnc-team-screening(a)forge.provo.novell.com
Reporter: yellowhat46(a)gmail.com
QA Contact: adrian(a)suse.com
Found By: ---
Blocker: ---
User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML,
like Gecko) Falkon/3.0.99 Chrome/65.0.3325.230 Safari/537.36
Build Identifier:
Hi,
while I was trying to build qutebrowser from git I got this error:
service tar_scm failed:
/srv/obs/service/25580
/srv/obs/service/25580/src
/srv/obs/service/25580/src/_service
/srv/obs/service/25580/src/qutebrowser.spec
/srv/obs/service/25580/src/.old
/srv/obs/service/25580/out
/srv/obs/service/25580/var
/srv/obs/service/25580/var/cache
/srv/obs/service/25580/var/cache/obs
/srv/obs/service/25580/var/cache/obs/mHV3kyPYFdpr
/srv/obs/service/25580/var/cache/obs/mHV3kyPYFdpr/scripts
/srv/obs/service/25580/var/cache/obs/mHV3kyPYFdpr/scripts/inner.sh
/srv/obs/service/25580/var/cache/obs/mHV3kyPYFdpr/scripts/inner.sh.command
/srv/obs/service/25580/home
Running /usr/lib/obs/service//tar_scm --url
git://github.com/qutebrowser/qutebrowser.git --scm git --versionformat %cd.%h
--outdir /var/cache/obs/mHV3kyPYFdpr/out
+ echo Running /usr/lib/obs/service//tar_scm --url
git://github.com/qutebrowser/qutebrowser.git --scm git --versionformat %cd.%h
--outdir /var/cache/obs/mHV3kyPYFdpr/out
+ export CACHEDIRECTORY=/var/cache/obs/mHV3kyPYFdpr/scm-cache
+ CACHEDIRECTORY=/var/cache/obs/mHV3kyPYFdpr/scm-cache
+ export HOME=/var/cache/obs/mHV3kyPYFdpr/home
+ HOME=/var/cache/obs/mHV3kyPYFdpr/home
+ /usr/lib/obs/service//tar_scm --url
git://github.com/qutebrowser/qutebrowser.git --scm git --versionformat %cd.%h
--outdir /var/cache/obs/mHV3kyPYFdpr/out
Detected cached repository...
Traceback (most recent call last):
File "/usr/lib/obs/service//tar_scm", line 30, in <module>
main()
File "/usr/lib/obs/service//tar_scm", line 26, in main
TarSCM.run()
File "/usr/lib/obs/service/TarSCM/__init__.py", line 35, in run
task_list.process_list()
File "/usr/lib/obs/service/TarSCM/tasks.py", line 116, in process_list
self.process_single_task(task)
File "/usr/lib/obs/service/TarSCM/tasks.py", line 203, in process_single_task
dstname=dstname)
File "/usr/lib/obs/service/TarSCM/scm/base.py", line 280, in
prep_tree_for_archive
shutil.copytree(src, dst, symlinks=True)
File "/usr/lib64/python2.7/shutil.py", line 203, in copytree
copytree(srcname, dstname, symlinks, ignore)
File "/usr/lib64/python2.7/shutil.py", line 203, in copytree
copytree(srcname, dstname, symlinks, ignore)
File "/usr/lib64/python2.7/shutil.py", line 203, in copytree
copytree(srcname, dstname, symlinks, ignore)
File "/usr/lib64/python2.7/shutil.py", line 203, in copytree
copytree(srcname, dstname, symlinks, ignore)
File "/usr/lib64/python2.7/shutil.py", line 197, in copytree
dstname = os.path.join(dst, name)
File "/usr/lib64/python2.7/posixpath.py", line 73, in join
path += '/' + b
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 1: ordinal
not in range(128)
is it very strange because worked some days ago.
Thanks
Reproducible: Always
Steps to Reproduce:
1. fetch qutebrowser-git
2.
3.
Actual Results:
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 1: ordinal
not in range(128)
Expected Results:
Fetch git repository
--
You are receiving this mail because:
You are on the CC list for the bug.