Nils
Nils
Not Just Ubuntu Fedora 29 is broken too: ``` make all-am make[1]: Entering directory '/home/nils/Downloads/vlc-libde265-0.1.7' /bin/sh ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DMODULE_STRING=\"de265\" -I/usr/include/vlc/plugins -D__PLUGIN__ -D_FILE_OFFSET_BITS=64 -D_REENTRANT -D_THREAD_SAFE -DMODULE_STRING=\"de265\" -I/usr/include/vlc/plugins...
I dug deeper into the payload and the initial error: `community/general/plugins/modules/proxmox.py", line 646` ``` .... elif not proxmox.content_check(node, module.params['ostemplate'], template_store): module.fail_json(msg="ostemplate '%s' not exists on node %s and storage %s"...
I tested "pure" `proxmoxer`, this works: ```python from proxmoxer import ProxmoxAPI proxmox = ProxmoxAPI('xxx.xxx.xxx.xxx', user='root@pam', password='xxxxxxxx', verify_ssl=False) node = proxmox.nodes('xxx') node.lxc.create(vmid=200, ostemplate='local:vztmpl/debian-bullseye-custom_amd64.tar.gz', hostname='helloworld', storage='SSD-Storage', password='secret') ``` I needed to define...
Ok it gets even weirder: I modelt the behaviour of `community/general/plugins/modules/proxmox.py", line 646` `proxmox.content_check` in a script: ```Python from proxmoxer import ProxmoxAPI proxmox = ProxmoxAPI('xxx.xxx.xxx.xxx', user='root@pam', token_name='ansible', token_value='xxxxxxxxxxxxxxxxxxxx', verify_ssl=False) node...
Sorry for stealing your Issue, but this might be related. > Bitwarden inside Thorium use the Fingerprint reader already fine. How did you manage to do this? I always get...
I just visited this again: ``` /source/WireGuard/wireguard-linux-compat-1.0.20220627/src/ratelimiter.c:25:8: error: unknown type name 'hsiphash_key_t' 25 | static hsiphash_key_t key; | ^~~~~~~~~~~~~~ /source/WireGuard/wireguard-linux-compat-1.0.20220627/src/ratelimiter.c: In function 'wg_ratelimiter_allow': /source/WireGuard/wireguard-linux-compat-1.0.20220627/src/ratelimiter.c:109:36: error: implicit declaration of function 'hsiphash_2u32';...
> > I wonder if [pinentry](https://www.gnupg.org/related_software/pinentry/index.html) could be used via `SUDO_ASKPASS`? I believe it doesn't require a terminal for password input as it uses its own gui prompt. This is...
> License tiers > We’ve updated the Chef End User License Agreement (EULA). The terms of the EULA are the same as they were before, but we’ve created three license...
No its the docker executable version: ``` $ docker --version Docker version 23.0.6+azure-2, build ef23cbc ``` Here is a example GitHub Action Workflow: ``` name: "Docker Version" on: push: workflow_dispatch:...
with `set sendmail="/usr/sbin/ssmtp"` and `smtp_user` unset it works, but I have to manually set the username each time.