Skip stage updatebase when using softupdate
[grml-live.git] / etc / grml / fai / config / hooks / updatebase.GRMLBASE
1 #!/bin/sh
2 # Filename:      /etc/grml/fai/config/hooks/updatebase.GRMLBASE
3 # Purpose:       skip task updatebase of FAI when running softupdate
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 # Latest change: Sun Dec 09 19:07:51 CET 2007 [mika]
8 ################################################################################
9
10 if [ "$FAI_ACTION" = "softupdate" ] ; then
11    skiptask updatebase
12 fi
13
14 ## END OF FILE #################################################################
15 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3