We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8572f84 commit 5d8cbeeCopy full SHA for 5d8cbee
installer/x86_64/install.sh
@@ -446,7 +446,11 @@ fi
446
# Decompress the file for the file system directly to the partition
447
unzip -o $ONIE_INSTALLER_PAYLOAD -x "$FILESYSTEM_DOCKERFS" -d $demo_mnt/$image_dir
448
449
-TAR_EXTRA_OPTION="--numeric-owner"
+if [ "$install_env" = "onie" ]; then
450
+ TAR_EXTRA_OPTION="--numeric-owner"
451
+else
452
+ TAR_EXTRA_OPTION="--numeric-owner --warning=no-timestamp"
453
+fi
454
mkdir -p $demo_mnt/$image_dir/$DOCKERFS_DIR
455
unzip -op $ONIE_INSTALLER_PAYLOAD "$FILESYSTEM_DOCKERFS" | tar xz $TAR_EXTRA_OPTION -f - -C $demo_mnt/$image_dir/$DOCKERFS_DIR
456
0 commit comments