Changeset 39121 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Oct 26, 2011 1:57:45 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/VBoxSysInfo.sh
r38093 r39121 35 35 # found to be "of interest". 36 36 get_linux_info () { 37 if [ -r /etc/lsb-release ] && grep Ubuntu /etc/lsb-release >/dev/null 2>&137 if which lsb_release > /dev/null 2>&1 38 38 then 39 # Ubuntu-based system 40 . /etc/lsb-release 41 print_linux_info "Ubuntu" $DISTRIB_RELEASE 39 # LSB-compliant system 40 print_linux_info `lsb_release -i -s` `lsb_release -r -s` 42 41 elif [ -r /etc/debian_version ] 43 42 then
Note:
See TracChangeset
for help on using the changeset viewer.