Sparky

Results 8 comments of Sparky

I was able to do a _workaround_ using the the following in hieradata: ``` puppet_db: puppetdb_server: 'server1:8081/,https://server2 puppetdb_port: 8081 ``` And using `puppetdb::master::config` class in manifest: ``` class { 'puppetdb::master::config':...

@d7415 here is a paste with the logs, I can change the `config` permissions, what permissions do you recommend? ``` % stat /data/lychee/config File: /data/lychee/config Size: 4096 Blocks: 8 IO...

Here is my docker compose log: https://pastebin.com/yVJtwZav

Adding `"- APP_FORCE_HTTPS=true"` to my docker compose file under lychee/environment sections has helped! I'll post more details when I'm done.

When I'm trying to upload a file I get a `Upload failed. The server returned an error! ` message with a 401 return code. `/data/lychee/uploads` is writable by lychee:lychee ```...

This is in diagnostics: ``` Diagnostics ----------- Warning: Dropbox import not working. dropbox_key is empty. Warning: zend.assertions is disabled although Lychee is in debug mode. For easier debugging code generation...

I found this in docker logs ``` [11/Jul/2024:21:30:00 +0000] "POST /livewire/upload-file?expires=1720737000&signature=2484aa5dba52330c5eda79391dd90d1b3e039843f5fbf039d2cf0d530526d0c7 HTTP/1.1" 401 19188 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:127.0) Gecko/20100101 Firefox/127.0" ``` 401 means unauthorized, but...

Then, for FreeBSD we can do something like: ``` case $facts['os']['family'] { 'FreeBSD': { $package_name = 'sudo-sssd' } 'Debian': { $package_name = 'sudo' } default: {} } class { 'sudo':...