Skip to content

Commit

Permalink
Merge pull request #988 from minrk/fix-launch
Browse files Browse the repository at this point in the history
fix `-m` invocation of jupyterhub
  • Loading branch information
manics authored Aug 25, 2024
2 parents c49fada + 5abf657 commit 22e08a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/howto/admin/systemd.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ PrivateDevices=yes
ProtectKernelTunables=yes
ProtectKernelModules=yes
Environment=TLJH_INSTALL_PREFIX=/opt/tljh
ExecStart=/opt/tljh/hub/bin/python3 -m jupyterhub.app -f jupyterhub_config.py --upgrade-db
ExecStart=/opt/tljh/hub/bin/python3 -m jupyterhub -f jupyterhub_config.py --upgrade-db

[Install]
WantedBy=multi-user.target
Expand Down
2 changes: 1 addition & 1 deletion tljh/systemd-units/jupyterhub.service
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Environment=TLJH_INSTALL_PREFIX={install_prefix}
Environment=PATH={install_prefix}/hub/bin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
# 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
ExecStart={python_interpreter_path} -m jupyterhub -f {jupyterhub_config_path} --upgrade-db

[Install]
# Start service when system boots
Expand Down

0 comments on commit 22e08a4

Please sign in to comment.