mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-12 19:20:39 +00:00
9 lines
128 B
Bash
Executable File
9 lines
128 B
Bash
Executable File
#!/bin/sh
|
|
# just to make open-vm-tools happy, nad fake output
|
|
# of lsb_release -sd
|
|
. /etc/os-release
|
|
echo $PRETTY_NAME
|
|
|
|
exit 0
|
|
|