summaryrefslogtreecommitdiff
path: root/community/open-iscsi/open-iscsi.install
blob: 2cbc06b92c13b8241c96d8e9a5f3187b7842841c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
## arg 1:  the new package version
post_install() {
	if [ -z $(</etc/iscsi/initiatorname.iscsi) ]; then
		name=$(iscsi-iname)
	  echo
	  echo ">>> Setting Initiatorname '$name'"
	  echo "InitiatorName=$name" > /etc/iscsi/initiatorname.iscsi
	fi
}

post_upgrade() {
	post_install
}