Changeset 33034 in vbox for trunk/src/VBox/Installer/linux
- Timestamp:
- Oct 11, 2010 10:08:02 AM (14 years ago)
- Location:
- trunk/src/VBox/Installer/linux
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/install.sh
r32326 r33034 207 207 # Find previous installation 208 208 if [ ! -r $CONFIG_DIR/$CONFIG ]; then 209 mkdir -p $CONFIG_DIR209 mkdir -p -m 755 $CONFIG_DIR 210 210 touch $CONFIG_DIR/$CONFIG 211 211 else … … 306 306 307 307 # Verify the archive 308 mkdir -p $INSTALLATION_DIR308 mkdir -p -m 755 $INSTALLATION_DIR 309 309 bzip2 -d -c VirtualBox.tar.bz2 | tar -tf - > $CONFIG_DIR/$CONFIG_FILES 310 310 RETVAL=$? -
trunk/src/VBox/Installer/linux/run-inst.sh
r31664 r33034 246 246 247 247 # install the new version 248 mkdir -p "$CONFIG_DIR"248 mkdir -p -m 755 "$CONFIG_DIR" 249 249 test ! -d "$INSTALLATION_DIR" && REMOVE_INSTALLATION_DIR=1 250 mkdir -p "$INSTALLATION_DIR"250 mkdir -p -m 755 "$INSTALLATION_DIR" 251 251 # Create a list of the files in the archive, skipping any directories which 252 252 # already exist in the filesystem.
Note:
See TracChangeset
for help on using the changeset viewer.