(Right click -> save as; 657:600)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| root@ubuntu-2004-base:~# cat /usr/lib/tmpfiles.d/00rsyslog.conf | |
| # Override systemd's default tmpfiles.d/var.conf to make /var/log writable by | |
| # the syslog group, so that rsyslog can run as user. | |
| # See tmpfiles.d(5) for details. | |
| # Type Path Mode UID GID Age Argument | |
| z /var/log 0775 root syslog - | |
| z /var/log/auth.log 0640 syslog adm - | |
| z /var/log/mail.err 0640 syslog adm - | |
| z /var/log/mail.log 0640 syslog adm - |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2021-03-12 09:12:06 cipherboy ab: Did the Fedora updates go through already or are they still pending? | |
| 2021-03-12 09:19:58 cipherboy ab: Ah, just checked Bodhi, looks like you filed new builds yesterday. I've gotta do new builds today, mind updating your Bodhi once I get them added or do you want to drop them? | |
| 2021-03-12 09:52:49 cipherboy ab: I updated https://bodhi.fedoraproject.org/updates/FEDORA-2021-c0d6637ca5 to add the new fix for CVE-2021-20179. | |
| 2021-03-12 09:54:39 ab cipherboy: thanks. Could you please also add %if 0%{?rhel} && 0%{?rhel} > 8 .. ExcludeArch: i686 .. %endif | |
| 2021-03-12 09:55:06 ab cipherboy: we cannot build on i686 anymore in RHEL9 because md2man is not there | |
| 2021-03-12 09:55:19 cipherboy ab: Sure, f34 only or f35/rawhide too? | |
| 2021-03-12 09:55:26 ab all of them | |
| 2021-03-12 09:55:56 cipherboy ab: Hmm maybe we should get a better upstream release procedure that does the md2man conversion in a different source tar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [cipherboy@x1c ~]$ podman pull fedora:rawhide | |
| [cipherboy@x1c ~]$ podman run -ti fedora:rawhide /bin/bash | |
| ... | |
| [root@4868520a8a28 jss]# git checkout capabilities-change-output | |
| Branch 'capabilities-change-output' set up to track remote branch 'capabilities-change-output' from 'origin'. | |
| Switched to a new branch 'capabilities-change-output' | |
| [root@4868520a8a28 jss]# cd build/ && cmake .. | |
| -- The C compiler identification is GNU 11.1.1 | |
| -- The CXX compiler identification is GNU 11.1.1 | |
| -- Detecting C compiler ABI info |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SECKEYEncryptedPrivateKeyInfo * | |
| PK11_ExportEncryptedPrivKeyInfo( | |
| PK11SlotInfo *slot, /* optional, encrypt key in this slot */ | |
| SECOidTag algTag, /* encrypt key with this algorithm | |
| AS: this needs to be updated to the SEC_OID_AES_KEY_WRAP_PAD. | |
| requires changing JSS. */ | |
| SECItem *pwitem, /* password for PBE encryption */ | |
| SECKEYPrivateKey *pk, /* encrypt this private key */ | |
| int iteration, /* interations for PBE alg */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python3 | |
| # From github.com/cipherboy/cmsh | |
| # --> `make distclean cms all check install` will give you a local | |
| # installation. | |
| import cmsh | |
| import itertools | |
| def constraint(puzzle, x, y): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Hello { | |
| public static void main(String[] args) { | |
| System.out.println("Hello, world!"); | |
| System.gc(); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| final class X509TrustManagerJavaxWrapper implements | |
| javax.net.ssl.X509TrustManager { | |
| private X509TrustManager theX509TrustManager; | |
| X509TrustManagerJavaxWrapper(X509TrustManager obj) { | |
| theX509TrustManager = obj; | |
| } | |
| public void checkClientTrusted( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/resteasy.spec b/resteasy.spec | |
| index 6f5c752..e8e178c 100644 | |
| --- a/resteasy.spec | |
| +++ b/resteasy.spec | |
| @@ -2,7 +2,7 @@ | |
| %global namedversion %{version}%{namedreltag} | |
| Name: resteasy | |
| -Version: 3.0.26 | |
| +Version: 4.3.1 |
NewerOlder