#!/bin/sh
#set -x
[ -n "$1" ] || { echo "Usage: $0 <initrdname>";exit 1; }
umount $1
i=$1.gz
gzip $1
mv $i $1
