eayin2

Results 12 comments of eayin2

Yes, that worked fine with txtorcon.TorClientEndpoint. Thanks for the hint. I had to specifically provide socks_hostname='127.0.0.1', else (i think) it'd pick automatically the ipv6 localhost ::1. #### client.py ``` from...

You generated an image with your custom cloud-init configuration. Can you use the default image and instead run `kvm-install-vm` with `-s` (Custom shell script) to set the static IP? Creating...

Yep I just saw it :-)

## Cause The reason it's not picked is because `-s user-data.sh` allows to execute a shell script and not add cloud-config settings, as seen by the `Content-Type: text/x-shellscript; charset="us-ascii"` boundary....

> I agree, @eayin2 ... the hard-coding of cloud-config is a deal breaker for me ... discourages me from using this most useful effort. OTOH, one can just add the...

You need to check in libvirtd logs, for systemd e.g.: `journalctl -u libvirtd -n 1000 -f`. Maybe the bridge `bridge99` tied to the physical NIC didn't exist yet, then it...

I think I use tags by setting my widget to `autocomplete.ModelSelect2Multiple()` and subclassing `autocomplete.Select2QuerySetView()` in views.py. When I change #L92 from ` value.id = value.text;` to ` value.id = value.id;`...

I think that is because tags allow approximation search, so if you have in your backend "John Doe" and just type in "John", then you can still get a result...

I don't use a tagging model, that may explain my issue. I simply used a normal model # models.py class Persons(models.Model): name = models.CharField(max_length=128, unique=False, blank=True) # views.py class TitleAutocomplete(autocomplete.Select2QuerySetView):...

I run into the same issue. If you run different versions of postgresql, then the database you want to connect to, might not be on the default postgresql port 5432,...