
post_install()
{
 systemctl enable iologic
 systemctl start iologic 
 return 0
}

pre_upgrade()
{
  systemctl stop iologic
  return 0
}

post_upgrade()
{
  systemctl start iologic
 return 0
}

pre_remove()
{
  systemctl stop iologic
  systemctl disable iologic
}

