Robert Rettig

Results 53 comments of Robert Rettig

maybe you check again #1041 it is related to os language settings. local test work if you have a LANG environment set but if you `unset LANG` it will fail....

Actually I replaced firewall usage with the role `linux-system-roles.firewall` But there are quite a lot of examples: https://linux-system-roles.github.io/firewall/#port

Actually providing KSM_TOKEN via environment variable is not working. But it should! ` KSM_TOKEN` > ``` > $ KSM_TOKEN="" ksm secret list > ksm had a problem: Invalid base64-encoded string:...

```shell $ read -s KSM_TOKEN && ( echo "$KSM_TOKEN" ) && unset KSM_TOKEN || unset KSM_TOKEN test123 $ echo $KSM_TOKEN $ read -s KSM_TOKEN && ( ksm profile init )...

Workarround or maybe this is the not documented correct way todo it. ```shell $ read -s S_KSM_TOKEN && ( KSM_TOKEN=${S_KSM_TOKEN#*:} KSM_HOSTNAME=${S_KSM_TOKEN%%:*} ksm profile init ) ; unset S_KSM_TOKEN Added profile...

> How are you generating your tokens? directly copied from the keeper desktop application > Your token is missing a padding character at the end. i did not removed or...

Thanks for the update > As a workaround currently you can use `--token` option _(working with both padded and unpadded tokens)_ ex. `ksm profile init --token=US:XXX` Will wait for the...

> The original cache function that we have developed was more like an example for the developers to use as a template to develop their own catching mechanism. ["Keeper Secrets...

> @bluelu, we are working on this, and it is working internally, but this requires updates in RDP client software, thus it would require more coordination internally, thanks for checking!...

Thanks for that ticket. I need to test this in my evaluation too. A KSM demo showed secret rotation. I would assume exactly for such rotation such basic operations to...