Alexander Korsunsky

Results 11 comments of Alexander Korsunsky

Fixing my shell error, the module still fails and still claims it worked. Running `/usr/sbin/ipa-client-automount` manually on the target host shows: ``` An automount location is already configured ``` After...

So this seems to have nothing to do with my broken shell. I can reliably break functioning automounts by passing the `ipaclient_allow_repair=on` to the role. This can be fixed by...

@t-woerner > Do you have a difference in the automount configuration files? What do you mean by "difference"? I have other automount locations configured via files, but that should be...

Here is the change that happens when running the role with `ipaclient_allow_repair=on` ```diff diff -u3 -r before-setup-automount/sssd/sssd.conf after-setup-automount/sssd/sssd.conf --- before-setup-automount/sssd/sssd.conf 2019-12-02 15:23:19.889905218 +0100 +++ after-setup-automount/sssd/sssd.conf 2019-12-02 15:28:16.939990528 +0100 @@ -11,10...

This looks highly suspicious: https://github.com/freeipa/freeipa/blob/master/ipaclient/install/ipa_client_automount.py#L586 ```python3 def configure_automount(): try: # ... except Exception as e: logger.debug('Raised exception %s', e) print("Installation failed. Rolling back changes.") uninstall(fstore, statestore) return 1 return 0...

Thanks for the reply. That's not exactly what I was looking for, the problem is that outside the loop, all messages will have extra newlines. Also, the progress bar can...

@PBscoots I'm affraid it's not that simple. This might have worked when the drag of a craft was the sum of the drag of the parts, but this is not...

Similar error happens to me: ![grafik](https://user-images.githubusercontent.com/3023492/207713767-f062ea43-5930-472f-906a-24a19b73b636.png) My Controller is a Xbox Wireless Controller M. My Windows Locale is set to `de;Deutsch`

Would it break anything to just https://github.com/WhiteMagic/JoystickGremlin/blob/54cf26ac7b3b8f3d4c3807e5af3f7ebb36be9125/dill/__init__.py#L357 ```diff - self.name = data.name.decode("utf-8") + self.name = data.name.decode("utf-8", errors="ignore")

> Some folks have noted that `depends_on` controls the order of the build. I am not so sure. Official docs says that `depends_on` is used to control the startup and...