
post_install()
{
  systemctl enable obd
  systemctl start obd
}

pre_upgrade()
{
   systemctl stop obd
}

post_upgrade()
{
  systemctl start obd
}

pre_remove()
{
    systemctl stop obd
    systemctl disable obd
}

