Can't enable Oxidized service on Ubuntu 19.04 server

I installed Oxidized on Ubuntu 19.04 and can not get the service to enable. It will run but when I issue sudo systemctl enable oxidized.service it give the following

update-rc.d: error: oxidized Default-Start contains no runlevels, aborting.

I saw several post reffering to adding runlevels to the script like

BEGIN INIT INFO

Provides: oxidized

Required-Start: $all

Required-Stop:

Default-Start: 2 3 4 5

Default-Stop:

Short-Description: Oxidized Network Backups

END INIT INFO

but this is a GEM and even when I tried that it didn’t work. I’m confused as to what to try next. Any help would be great!

Can you show your oxidized service file contents,

also output

whereis gem
whereis oxidized

oxidized.service contents

[Unit]
Description=Oxidized - Network Device Configuration Backup Tool
After=network-online.target multi-user.target
Wants=network-online.target

[Service]
ExecStart=/usr/local/bin/oxidized
User=oxidized
KillSignal=SIGKILL
#Environment=“OXIDIZED_HOME=/etc/oxidized”

[Install]
WantedBy=multi-user.target

I’m not sure what output you want. Can you please elaborate?

Here’s output of gem environment command

RubyGems Environment:

  • RUBYGEMS VERSION: 2.7.6.2
  • RUBY VERSION: 2.5.5 (2019-03-15 patchlevel 157) [x86_64-linux-gnu]
  • INSTALLATION DIRECTORY: /var/lib/gems/2.5.0
  • USER INSTALLATION DIRECTORY: /home/oxidized/.gem/ruby/2.5.0
  • RUBY EXECUTABLE: /usr/bin/ruby2.5
  • EXECUTABLE DIRECTORY: /usr/local/bin
  • SPEC CACHE DIRECTORY: /home/oxidized/.gem/specs
  • SYSTEM CONFIGURATION DIRECTORY: /etc
  • RUBYGEMS PLATFORMS:
    • ruby
    • x86_64-linux
  • GEM PATHS:
    • /var/lib/gems/2.5.0
    • /home/oxidized/.gem/ruby/2.5.0
    • /usr/lib/x86_64-linux-gnu/rubygems-integration/2.5.0
    • /usr/share/rubygems-integration/2.5.0
    • /usr/share/rubygems-integration/all
  • GEM CONFIGURATION:
    • :update_sources => true
    • :verbose => true
    • :backtrace => false
    • :bulk_threshold => 1000
  • REMOTE SOURCES:
  • SHELL PATH:
    • /usr/local/sbin
    • /usr/local/bin
    • /usr/sbin
    • /usr/bin
    • /sbin
    • /bin
    • /usr/games
    • /usr/local/games
    • /snap/bin

The oxidized executable is in /usr/local/bin

Thanks