Alexander

Results 15 issues of Alexander

To connect to the internet (and thus to the Google services), we've got to use a proxy. I tried modifying the `/lib/systemd/system/cloudprintd.service` like this (`ExecStart` line): ``` [Unit] Description=Google Cloud...

enhancement

I'm managing my domain with terraform and your plugin. In my IaC, I've got something like this: ```hcl resource "godaddy_domain_record" "skwar_me" { domain = "skwar.me" addresses = [] record {...

I've got a ZTE Axon 7 Mini with Android 7.1.1 and a Samsung Note 3 with Åndroid 5.0. Both are logged on to the same WiFi (even tried setting up...

### Is there an existing issue for this? - [X] I have searched the existing issues ### Community Note * Please vote on this issue by adding a :thumbsup: [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/)...

bug
regression
service/service-bus

It would be tremendously helpful, if the name of a resource would be mentioned in a generated error message. If this were done, remediation would be a lot easier. In...

Follow up to thread at https://discourse.chef.io/t/reading-secret-for-encrypted-data-bag/11414/3 According to the [data bags documentation][data bags docs], it should be possible to do this: ```ruby data_bag_item('bag', 'item', IO.read('secret_file')) ``` If the secret in...

Component: Chef Infra Client
Aspect: Documentation
Topic: Knife

Can you please clarify how to create a minimum set of the OAUTH consent screen and the oauth client? Is the following okay? # OAUTH consent screen - Internal -...

I created an AWS EC2 instance and "installed" yt-migrate there. I created a DNS record pointing to the IP, so that I can enter eg. http://ytm.example.org/ and get to my...

Instead of using eg `copy`, use `ansible.builtin.copy` to avoid possible clashes in names. I went through all of the Ansible YAML files and replaced the short names. This is the...

It's possible that modules use the same names for tasks. Because of that, Ansible suggests to use "FQCN". Eg. instead of `copy`, use `ansible.builtin.copy`. PR #5 fixes this.