Johannes Meixner

Results 667 comments of Johannes Meixner

@pcahyna thank you! I think you are right. I will have a closer look how the BTRFS_SUBVOLUME_SLES_SETUP stuff is meant to work (I have to reverse-engineer my own code because...

Regarding https://github.com/rear/rear/issues/3504#issuecomment-3151279304 see https://github.com/rear/rear/issues/3505 and https://github.com/rear/rear/issues/3477

USE_RESOLV_CONF is an array - see default.conf so you must specify it as an array in your local.conf (or site.conf). See the comments in init/default/001_verify_config_arrays.sh why this test is there:...

There is a bug in the USE_RESOLV_CONF documentation in default.conf ``` # With USE_RESOLV_CONF="no" ... ... # With USE_RESOLV_CONF="/path/to/file" ... ``` which must be ``` # With USE_RESOLV_CONF=( "no" )...

I will have to check for all array variables in default.conf that examples in default.conf have correct syntax.

@gdha I do not want to block or delay a 2.9 release because of issues like this which are not urgent. Before I touch this one I will finish my...

@pcahyna thank you for such major overhauling and cleanup work. I appreciate it very much because rather often there is only time for "duct tape" fixes.

I had a quick first look and I noticed: (1) `adding SELinux utilities to the rescue system` happens via PROGS and not via REQUIRED_PROGS. Is this intentional? If yes, why?...

@pcahyna yes, I know that SLES also uses SELinux in particular the new SLES 16 uses it by default, see "Transition to SELinux" in https://www.suse.com/c/what-is-new-in-suse-linux-enterprise-server-16-0/ Nevertheless I have no experience...

I won't use Duplicity so all I can do is plain looking at the code. My remarks so far: (1) I do not understand how BACKUP_DUPLICITY_GPG_OPTIONS is now meant to...