Statistics
| Branch: | Tag: | Revision:

root / debian / snf-image.postinst @ 3e1c0b71

History | View | Annotate | Download (590 Bytes)

1
#!/bin/sh
2

    
3
set -e
4

    
5
case "$1" in
6
    configure|reconfigure)
7
	echo "NOTE: To complete snf-image installation either create an snf-image-helper"
8
	echo "NOTE: image by running:"
9
	echo "NOTE:"
10
	echo "NOTE: $ snf-image-update-helper"
11
	echo "NOTE:"
12
	echo "NOTE: or download and install a fixed one from here:"
13
	echo "NOTE: https://code.grnet.gr/projects/snf-image/wiki#Fixed-snf-image-helper-image"
14
	echo "NOTE:"
15
    ;;
16

    
17
    abort-upgrade|abort-remove|abort-deconfigure)
18
    ;;
19

    
20
    *)
21
        echo "postinst called with unknown argument \`$1'" >&2
22
        exit 1
23
    ;;
24
esac
25

    
26
#DEBHELPER#
27

    
28
exit 0