]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - src/initscripts/init.d/partresize
util-linux: update to 2.24.
[people/teissler/ipfire-2.x.git] / src / initscripts / init.d / partresize
CommitLineData
a6d0d790
AF
1#!/bin/sh
2########################################################################
3# Begin $rc_base/init.d/partresize
4#
3e011c27 5# Description : Resize the root partition to the drivesize
a6d0d790
AF
6#
7# Authors : Arne Fitzenreiter - arne_f@ipfire.org
8#
1ee33dda 9# Version : 1.02
a6d0d790
AF
10#
11# Notes :
12#
13########################################################################
14
15. /etc/sysconfig/rc
16. ${rc_functions}
17
18case "${1}" in
19 start)
20
fbb2ebd6
AF
21 boot_mesg "Mounting root file system in read/write mode ..."
22 mount -o remount,rw / > /dev/null
23 evaluate_retval
a6d0d790 24
1ee33dda
AF
25 boot_mesg "Create /etc/mtab..."
26 > /etc/mtab
27 mount -f / || failed=1
28 (exit ${failed})
29 evaluate_retval
30
a6d0d790
AF
31 # Detect device
32 ROOT=`mount | grep -m1 " / " | cut -d" " -f1`;
ac6945db
AF
33 if [ "${ROOT:`expr length $ROOT`-2:1}" == "p" ]; then
34 DRV=${ROOT::`expr length $ROOT`-2}
35 else
36 DRV=${ROOT::`expr length $ROOT`-1}
37 fi
a6d0d790 38
da23c4be 39 boot_mesg "Change Partition ${DRV}3 to all free space ..."
3e011c27 40 echo -e 'd\n3\nn\np\n3\n\n\nw\nq\n' | fdisk ${DRV}
a6d0d790
AF
41
42 # Erase symlink, it should run only once
43 rm -f /etc/rc.d/rcsysinit.d/S25partresize
44
45 boot_mesg "Rebooting ..."
fbb2ebd6
AF
46 sync
47 mount -o remount,ro / > /dev/null
a6d0d790
AF
48 reboot -f
49
50 ;;
51 *)
52 echo "Usage: ${0} {start}"
53 exit 1
54 ;;
55esac
56
57# End $rc_base/init.d/partresize