Changeset 93662 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Feb 8, 2022 5:11:45 PM (3 years ago)
- Location:
- trunk/src/VBox/Additions/solaris/Installer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/solaris/Installer/postinstall.sh
r93115 r93662 104 104 # Solaris 11 SRU6 and later use group root (check a file which isn't 105 105 # tainted by VirtualBox install scripts and allow no other group) 106 refgroup= $(LC_ALL=C /usr/bin/ls -lL /etc/dev/reserved_devnames | awk '{ print $4 }' 2>/dev/null)106 refgroup=`LC_ALL=C /usr/bin/ls -lL /etc/dev/reserved_devnames | awk '{ print $4 }' 2>/dev/null` 107 107 if [ $? -eq 0 -a "x$refgroup" = "xroot" ]; then 108 108 group=root -
trunk/src/VBox/Additions/solaris/Installer/preremove.sh
r93115 r93662 54 54 # Solaris 11 SRU6 and later use group root (check a file which isn't 55 55 # tainted by VirtualBox install scripts and allow no other group) 56 refgroup= $(LC_ALL=C /usr/bin/ls -lL /etc/dev/reserved_devnames | awk '{ print $4 }' 2>/dev/null)56 refgroup=`LC_ALL=C /usr/bin/ls -lL /etc/dev/reserved_devnames | awk '{ print $4 }' 2>/dev/null` 57 57 if [ $? -eq 0 -a "x$refgroup" = "xroot" ]; then 58 58 group=root
Note:
See TracChangeset
for help on using the changeset viewer.