1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Merge pull request #3086 from holta/local_facts.fact-cleaner-output

Cleaner output for local_facts.fact on Raspberry Pi & similar, by hiding the null byte in /proc/device-tree/model
This commit is contained in:
A Holt 2021-12-26 17:27:35 -05:00 committed by GitHub
commit 2a754a3c78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -95,13 +95,13 @@ tmp=$(git rev-parse --verify HEAD) &&
#tmp=$(cat /proc/device-tree/mfg-data/MN) &&
# XO_MODEL=$tmp
tmp=$(grep -ai raspberry /proc/device-tree/model) &&
tmp=$(grep -ai raspberry /proc/device-tree/model | tr -d '\0') &&
RPI_MODEL=$tmp
# /proc/device-tree/model e.g. 'Parallels ARM Virtual Machine' identical to...
# /sys/firmware/devicetree/base/model (also true on RPi hardware!)
tmp=$(cat /proc/device-tree/model) &&
tmp=$(tr -d '\0' < /proc/device-tree/model) &&
DEVICETREE_MODEL=$tmp
tmp=$(ansible --version) &&