I'm not stuck on getting it running as a Service.
Just getting it so it runs when the server is power cycled or otherwise. Insuring that the scheduler is running so it can do DB updates of flat-files that get dumped on the box daily.
So some googling later for "Persistant Python script Rhel7 service"
I changed the service to the following and now the service will run.
Thank-you Dave for getting me back to thinking about writing the service correctly.
Between the dashes below is this file:
"/etc/systemd/system/web2py-scheduler.service"
And can be activated via:
"systemctl enable web2py-scheduler.service"
"systemctl start web2py-scheduler.service"
-------------
[Unit]
Description=Web2py Scheduler service
[Service]
ExecStart=/usr/bin/python /opt/www-data/web2py/web2py.py -K networktools,networktools,networktools
Type=simple
[Install]
WantedBy=multi-user.target
--------------
If you find a more elegant solution. I'm open.