Displaying 2 results from an estimated 2 matches for "distro_id".
Did you mean:
distrib_id
2017 Sep 25
2
[PATCH] build: improve and simplify distro detection
...E-release; then
- DISTRO=SUSE
-elif test -f /etc/frugalware-release; then
- DISTRO=FRUGALWARE
-elif test -f /etc/mageia-release; then
- DISTRO=MAGEIA
-else
-dnl fallback option
- DISTRO=REDHAT
-fi
-AC_MSG_RESULT([$DISTRO])
+AC_ARG_WITH([distro],
+ [AS_HELP_STRING([--with-distro="DISTRO_ID"],
+ [distro ID @<:@default=ID in /etc/os-release@:>@])],[
+ DISTRO="$withval"
+ AC_MSG_RESULT([$DISTRO (manually specified)])
+ ],[
+ if test -f /etc/os-release; then
+ ( . /etc/os-release && echo $ID | tr '@<...
2019 Jul 18
1
Ubuntu Bionic samba 4.9.11 and 4.10.6 are now available. (amd64/i386)
...> allowed_origins = get_allowed_origins()
> File "/usr/bin/unattended-upgrade", line 510, in get_allowed_origins
> allowed_origins = get_allowed_origins_legacy()
> File "/usr/bin/unattended-upgrade", line 489, in get_allowed_origins_legacy
> (distro_id, distro_codename) = s.split()
> ValueError: not enough values to unpack (expected 2, got 1)
>
I use Devuan and it works for myself:
rowland at devstation:~$ sudo unattended-upgrade --dry-run -v
Initial blacklisted packages:
Initial whitelisted packages:
Starting unattended upgrades script
Al...