]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - src/pakfire/lib/functions.sh
Pakfire: call "sync" in function.sh after having extracted archives
[people/pmueller/ipfire-2.x.git] / src / pakfire / lib / functions.sh
index f784cf79267566daf8244c6a2e85e394d53aa382..67986e20e113a935959b394a95d0e4744b045aa7 100644 (file)
@@ -2,7 +2,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2012  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2021  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -35,6 +35,7 @@ TAR_OPTIONS=(
 extract_files() {
        echo "Extracting files..."
        tar -xavf /opt/pakfire/tmp/files* "${TAR_OPTIONS[@]}" -C /
+       sync
        echo "...Finished."
 }
 
@@ -42,6 +43,7 @@ extract_backup_includes() {
        echo "Extracting backup includes..."
        tar xavf /opt/pakfire/tmp/files* "${TAR_OPTIONS[@]}" -C / \
                var/ipfire/backup/addons/includes
+       sync
        echo "...Finished."
 }