mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 17:36:14 +01:00
da50de9b30
Include the size of the `machine-id` file, but not the value itself as that is sensitive for non-throwaway machines. What’s most useful for debugging CI problems is knowing whether, and where, the `machine-id` is set. Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
14 lines
260 B
Bash
Executable File
14 lines
260 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eux -o pipefail
|
|
|
|
id || :
|
|
capsh --print || :
|
|
env -0 | sort -z | perl -pe 's/\0/\n/g' || :
|
|
setpriv --dump || :
|
|
ulimit -a || :
|
|
cat /proc/self/status || :
|
|
cat /proc/self/mountinfo || :
|
|
stat /etc/machine-id || :
|
|
stat /var/lib/dbus/machine-id || :
|