1#!/bin/sh 2### BEGIN INIT INFO 3# Provides: resize-all 4# Required-Start: $local_fs 5# Required-Stop: $local_fs 6# Default-Start: S 7# Default-Stop: 8# Description: Resize all internal mounted partitions 9### END INIT INFO 10 11case "$1" in 12 start|"") 13 resize-helper 14 ;; 15 restart|reload|force-reload) 16 echo "Error: argument '$1' not supported" >&2 17 exit 3 18 ;; 19 stop|status) 20 # No-op 21 ;; 22 *) 23 echo "Usage: start" >&2 24 exit 3 25 ;; 26esac 27 28: 29