
On 3/23/25 1:00 PM, Axel Braun wrote:
Am Sonntag, 23. März 2025, 16:04:00 Mitteleuropäische Normalzeit schrieb athurtic--- via openSUSE Factory:
On Sunday, 23 March 2025 at 09:58:52 am GMT-4, athurtic--- via openSUSE Factory <factory@lists.opensuse.org> wrote:
On Sunday, 23 March 2025 at 09:31:58 am GMT-4, Robert Webb via openSUSE Factory <factory@lists.opensuse.org> wrote:
On Sun, 23 Mar 2025 09:41:16 +0100, Axel Braun <docb@opensuse.org> wrote:
any option where I can look up the currently supported env variables? Could not spot anything in https://github.com/openSUSE/zypper/blob/master/doc/zypper.8.txt
The list of all variables of any kind, expressed as '$name' or '${name}' on the zypper man page:
$ man zypper.8 2>/dev/null \ |col -bx \ |sed 's/\${\(\w\+\)}/$\1 /g' \ |grep -o '\$\w\+' \ |sed -e 's/^\$//' \ |sort -u
HOME PATH XDG_CACHE_HOME ZYPP_CONF arch basearch releasever releasever_major releasever_minor
and, perhaps: ZYPP_PCK_PRELOAD
and ZYPP_ARIA2C=1 ZYPP_SINGLE_RPMTRANS=1 ZYPP_MEDIANETWORK=1 ZYPP_CURL2=1
Thank you! The single RPM trans I was looking for! @Robert: Nice bash-magic!
Thanks Axel
Here's another one that is useful and related to the snapper zypper integration: DISABLE_SNAPPER_ZYPP_PLUGIN Normally zypper creates pre/post snapshots, this allows you to on the fly disable it temporarily. I have a script where I needed to be in control of the pre/post snapshots so that allows me to temporarily disable it and then re-enable after when the script is complete. -- Regards, Joe