Sophie

Sophie

distrib > Fedora > 20 > x86_64 > by-pkgid > 5986e58804c20de4554e1545e2e8afa0 > scriptlet

imagefactory-plugins-vSphere-1.1.6-2.fc20.noarch.rpm

POSTIN

/bin/sh
# create it if it doesn't already exist as a link 
# If it is an existing file other than a link, do nothing 
[ -L /etc/imagefactory/plugins.d/vSphere.info ] || 
[ -e /etc/imagefactory/plugins.d/vSphere.info ] || 
ln -s /usr/lib/python2.7/site-packages/imagefactory_plugins/vSphere/vSphere.info /etc/imagefactory/plugins.d/vSphere.info 
exit 0

POSTUN

/bin/sh
if [ "$1" = "0" ]; then 
  # clean up the link if it exists - if it doesn't or if this is a regular file, do nothing 
  [ -L /etc/imagefactory/plugins.d/vSphere.info ] && rm -f  /etc/imagefactory/plugins.d/vSphere.info 
fi 
exit 0