Manual page with centralised documentation.
[virt-p2v.git] / virt-p2v-update-wrapper
1 #!/bin/sh -
2 #
3 # This is a wrapper which checks for an attachment on the ISO image /
4 # CDROM device.  If found then it uses it to replace files within the
5 # filesystem.  Mainly used for quick development builds where it is
6 # simpler to replace files rather than rebuilding the whole ISO.
7 #
8 # Copyright (C) 2008 Red Hat Inc.
9 # Written by Richard W.M. Jones <rjones@redhat.com>
10 #
11 # This program is free software; you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 2 of the License, or
14 # (at your option) any later version.
15 #
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write to the Free Software
23 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24
25 if /usr/bin/iso-attach has /dev/cdrom; then
26     iso-attach get /dev/cdrom /usr/bin/virt-p2v
27 fi
28
29 exec "$@"