Files
the-littlest-jupyterhub/tljh/systemd-units/jupyterhub.service
yuvipanda fb75777d8a Pass --upgrade-db to jupyterhub all the time
- It's a no-op if we aren't upgrading hub versions.
- We know we're only using sqlite, since we are an
  opinionated distro!
- This matches what we do in z2jh
2019-05-20 11:31:33 -07:00

27 lines
863 B
Desktop File

# Template file for JupyterHub systemd service
# Uses simple string.format() for 'templating'
[Unit]
# Traefik must have successfully started *before* we launch JupyterHub
Requires=traefik.service
After=traefik.service
[Service]
User=root
Restart=always
# jupyterhub process should have no access to home directories
ProtectHome=tmpfs
WorkingDirectory={install_prefix}/state
# Protect bits that are normally shared across the system
PrivateTmp=yes
PrivateDevices=yes
ProtectKernelTunables=yes
ProtectKernelModules=yes
Environment=TLJH_INSTALL_PREFIX={install_prefix}
# Run upgrade-db before starting, in case Hub version has changed
# This is a no-op when no db exists or no upgrades are needed
ExecStart={python_interpreter_path} -m jupyterhub.app -f {jupyterhub_config_path} --upgrade-db
[Install]
# Start service when system boots
WantedBy=multi-user.target