replace grep+sed by awk

remotes/origin/4.6
Philippe Grégoire 8 years ago
parent e88e9c357f
commit 2b9bf3de24
No known key found for this signature in database
GPG Key ID: A14AA6DA679C2177
  1. 2
      cdist/conf/explorer/os

@ -143,7 +143,7 @@ esac
if [ -f /etc/os-release ]; then
# already lowercase, according to:
# https://www.freedesktop.org/software/systemd/man/os-release.html
grep '^ID=' /etc/os-release | sed -e 's|^ID=||'
awk -F= '/^ID=/ {print $2;}' /etc/os-release
exit 0
fi

Loading…
Cancel
Save