]> git.proxmox.com Git - mirror_lxc.git/commitdiff
lxc-debian: add --flush-cache
authorLaurent Vivier <laurent@vivier.eu>
Fri, 17 Jun 2016 01:19:31 +0000 (03:19 +0200)
committerStéphane Graber <stgraber@ubuntu.com>
Mon, 27 Jun 2016 20:20:53 +0000 (16:20 -0400)
copied from lxc-ubuntu.in

Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Acked-by: Serge Hallyn <serge@hallyn.com>
templates/lxc-debian.in

index 0f66783eac2465d6c0b887a5aea4998d4982d773..9d81af856b61384c9ada656f6737ddccfe6cc5dc 100644 (file)
@@ -372,6 +372,7 @@ install_debian()
     cache="$4/debian"
     interpreter="$5"
     interpreter_path="$6"
+    flushcache=$7
     mkdir -p $LOCALSTATEDIR/lock/subsys/
     (
         flock -x 9
@@ -380,6 +381,11 @@ install_debian()
             return 1
         fi
 
+        if [ $flushcache -eq 1 ]; then
+            echo "Flushing cache..."
+            cleanup
+        fi
+
         echo "Checking cache download in $cache/rootfs-$release-$arch ... "
         if [ ! -e "$cache/rootfs-$release-$arch" ]; then
             download_debian $cache $arch $release "$interpreter" "$interpreter_path"
@@ -544,6 +550,7 @@ Usage: $1 -h|--help -p|--path=<path> [-c|--clean] [-a|--arch=<arch>] [-r|--relea
                                      [--mirror=<mirror>] [--security-mirror=<security mirror>]
                                      [--package=<package_name1,package_name2,...>]
                                      [-I|--interpreter-path=<interpreter path>]
+                                     [-F | --flush-cache]
 
 Options :
 
@@ -564,6 +571,7 @@ Options :
   --enable-non-free      include also Debian's contrib and non-free repositories.
   -I|--interpreter-path=INTERPRETER-PATH
                          Path of the binfmt interpreter to copy to the rootfs
+  -F | --flush-cache     Flush the debian release cache
 
 Environment variables:
 
@@ -576,7 +584,7 @@ EOF
     return 0
 }
 
-options=$(getopt -o hp:n:a:r:cI: -l arch:,clean,help,enable-non-free,mirror:,name:,packages:,path:,release:,rootfs:,security-mirror:,interpreter-path: -- "$@")
+options=$(getopt -o hp:n:a:r:cI:F -l arch:,clean,help,enable-non-free,mirror:,name:,packages:,path:,release:,rootfs:,security-mirror:,interpreter-path:,flush-cache -- "$@")
 if [ $? -ne 0 ]; then
         usage $(basename $0)
         exit 1
@@ -593,6 +601,7 @@ elif [ "$arch" = "armv7l" ]; then
 fi
 hostarch=$arch
 mainonly=1
+flushcache=0
 
 while true
 do
@@ -612,6 +621,7 @@ do
         -r|--release)         release=$2; shift 2;;
            --rootfs)          rootfs=$2; shift 2;;
            --security-mirror) SECURITY_MIRROR=$2; shift 2;;
+        -F|--flush-cache)     flushcache=1; shift 1;;
         *)                    break ;;
     esac
 done
@@ -698,7 +708,7 @@ else
     num_tty=4
 fi
 
-install_debian $rootfs $release $arch $LXC_CACHE_PATH "$interpreter" "$interpreter_path"
+install_debian $rootfs $release $arch $LXC_CACHE_PATH "$interpreter" "$interpreter_path" $flushcache
 if [ $? -ne 0 ]; then
     echo "failed to install debian"
     exit 1