This website requires JavaScript.
Explore
Help
Register
Sign in
kpriv
/
freebsd-ports
Watch
1
Star
0
Fork
You've already forked freebsd-ports
0
Code
Issues
Pull requests
Projects
Releases
Packages
Wiki
Activity
67b25c0d1a
freebsd-ports
/
security
/
plasma5-kwallet-pam
/
pkg-plist
4 lines
92 B
Text
Raw
Normal View
History
Unescape
Escape
Import the KDE Plasma5 ports This is an import of the Plasma5 ports that we have had in the development repository for quite some time now. Please note: * Plasma5 cannot be installed at the same time as KDE SC4. * Qt5 assumes /etc/localtime to be a symlink to a tz file, not a regular file. * To start plasma5, it is recommended to use something like exec ck-launch-session startkde * Powermanagement and such is not working :-) I would like to thank all the people that have helped test it in the past years. Reviewed by: adridg Differential Revision: https://reviews.freebsd.org/D15096
2018-04-27 22:29:36 +02:00
etc/xdg/autostart/pam_kwallet_init.desktop
lib/libexec/pam_kwallet_init
security/plasma5-kwallet-pam: make it work - Replace the use of socat with netcat which is in base. Note that netcat is bidirectional. It sends input from stdin over the socket and input from the socket to stdout. After receiving EOF on stdin it keeps polling the socket for input until the other end closes the connection, which in the case of kwalletd never happens because it's also waiting for more data until the other end closes the connection. Call netcat using "nc | :" so its stdout is a pipe of which the far end closes immediately (stdout itself stays open). Without a valid stdout netcat becomes unidirectional. Using "nc >&-" doesn't work because it closes stdout itself and its descriptor will be reused for the socket so netcat thinks it has a valid stdout. - Fix an off-by-one buffer size check. - Fix a call to bind(2). The third argument should be the size of the sockaddr struct. It contains an extra field besides sun_path and sun_family in BSD so the name of the socket got truncated. PR: 228291 Submitted by: tijl, mikael.urankar@gmail.com
2019-08-28 20:09:16 +02:00
lib/pam_kwallet5.so
Reference in a new issue
Copy permalink