Christian Salway

Results 9 comments of Christian Salway

To make this work on OSX, I did the following (this wont work on Linux): In `server.py`: changed the `Run` method as follows: ``` def Run(self): self._kq = select.kqueue() self._fdmap...

Can the following URL be used to jumpstart EAP support https://w1.fi/cgit/hostap/plain/tests/hwsim/test_eap_proto.py

Can the following URL be used to jumpstart EAP support: https://w1.fi/cgit/hostap/plain/tests/hwsim/test_eap_proto.py

Here's the solution I came up with - a python script that handles the store, get commands docker-credential-plaintext.py ``` #!/usr/bin/env python3 import json import os import sys _data = None...

This is critical for ASG's that reference the old AMI. If you deregister the AMI, the ASG fails to launch any more instances.

Assuming it's because I need the devel for postgresql, I get ``` # dnf install postgresql16-devel Last metadata expiration check: 0:13:38 ago on Thu 25 Jan 2024 13:49:05 GMT. Error:...

I followed https://docs.fedoraproject.org/en-US/epel/ and enabled `crb` repo and then ran `dnf install postgresql16-devel` which got rid of the `perl(IPC::Run)` error..... but now when i run the compile, i get ```...

Next I ran the following to squash the `cannot read spec file` error and then reran ``` dnf install redhat-rpm-config ``` at this point, ive lost the will to live!

Finally, I restart postgresql and run ``` postgres=# CREATE EXTENSION system_stats; CREATE EXTENSION ``` and then grant the permission to the user ``` GRANT monitor_system_stats to admin; ``` What an...