Update ChangeLog and version for 0.13
[snf-image] / snf-image-helper / tasks / 20FilesystemResizeUnmounted.in
1 #! /bin/bash
2
3 # Copyright (C) 2011 GRNET S.A. 
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 # 02110-1301, USA.
19
20 ### BEGIN TASK INFO
21 # Provides:             FilesystemResizeUnmounted
22 # RunBefore:            MountImage
23 # RunAfter:             FixPartitionTable
24 # Short-Description:    Resize filesystem to use all the available space
25 ### END TASK INFO
26
27 set -e
28 . "@commondir@/common.sh"
29
30 trap task_cleanup EXIT
31 report_task_start
32 # Check if the task should be prevented from running.
33 check_if_excluded
34
35 if [ ! -b "$SNF_IMAGE_DEV" ]; then
36     log_error "Device file:\`${SNF_IMAGE_DEV}' is not a block device"
37 fi
38
39 if [ "$SNF_IMAGE_PROPERTY_OSFAMILY" = openbsd ]; then
40     bsd_part="$(@scriptsdir@/disklabel.py --get-last-partition "$SNF_IMAGE_DEV")"
41     if [ "$bsd_part" = "b" ]; then
42         warn "Last partition is swap space. Resizing ommited"
43         exit 0
44     fi
45
46     part="${SNF_IMAGE_DEV}$(disklabel2linux "$bsd_part")"
47
48     $DUMPFS_OPENBSD "$part" > /dev/null ||
49         { warn "Filesystem is not UFS. Resizing ommited"; exit 0; }
50
51     $GROWFS_OPENBSD -y "$part"
52     exit 0
53 fi
54
55 if [ "$SNF_IMAGE_PROPERTY_OSFAMILY" = netbsd ]; then
56     warn "File system resizing currently not supported for NetBSD"
57     exit 0
58 fi
59
60 if [ -z "$SNF_IMAGE_RESIZE_PART" ]; then
61     warn "No partition chosen for resize"
62     exit 0
63 fi
64
65 if [ "x$SNF_IMAGE_PROPERTY_DO_SYNC" = "xyes" ]; then
66     unset EATMYDATA
67 fi
68
69 table=$(get_partition_table "$SNF_IMAGE_DEV")
70 partition=$(get_partition_by_num "$table" "$SNF_IMAGE_RESIZE_PART")
71 id=$(cut -d: -f1 <<< "$partition")
72 ptype=$(cut -d: -f5 <<< "$partition")
73
74 device="${SNF_IMAGE_DEV}${id}"
75
76 if [[ "$ptype" == ext[234] ]]; then
77     state=$($TUNE2FS -l "$device" | grep ^Filesystem\ state: | cut -d: -f2);
78     state=$(echo $state) #trim the value
79
80     # We force a filesystem resize here if the file system is clean, even if
81     # resize2fs complains. By default resize2fs will refuse to resize a file
82     # system that has been mounted after the last fs check, but since we are
83     # sure the file system is clean it's safe enough to bypass this.
84     if [ "$state" = "clean" ]; then
85         $EATMYDATA $RESIZE2FS -f "$device"
86     else
87         log_error "The file system state of partition: \`$device' " \
88             " is not clean (state = $state)"
89     fi
90 elif [[ "$ptype" == "freebsd-ufs" ]]; then
91     $GROWFS_UFS -y "$device"
92 else
93     warn "Don't know how to resize partition \`$id' with file system \`$ptype'."
94 fi
95
96 exit 0
97
98 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :