mirror of
https://github.com/jupyterhub/the-littlest-jupyterhub.git
synced 2025-12-18 21:54:05 +08:00
add plugin infrastructure to user script
This commit is contained in:
15
tljh/user.py
15
tljh/user.py
@@ -3,11 +3,20 @@ User management for tljh.
|
|||||||
|
|
||||||
Supports minimal user & group management
|
Supports minimal user & group management
|
||||||
"""
|
"""
|
||||||
import pwd
|
|
||||||
import grp
|
import grp
|
||||||
|
import pwd
|
||||||
import subprocess
|
import subprocess
|
||||||
from os.path import expanduser
|
from os.path import expanduser
|
||||||
|
|
||||||
|
import pluggy
|
||||||
|
|
||||||
|
from tljh import hooks
|
||||||
|
|
||||||
|
# Set up plugin infrastructure
|
||||||
|
pm = pluggy.PluginManager('tljh')
|
||||||
|
pm.add_hookspecs(hooks)
|
||||||
|
pm.load_setuptools_entrypoints('tljh')
|
||||||
|
|
||||||
|
|
||||||
def ensure_user(username):
|
def ensure_user(username):
|
||||||
"""
|
"""
|
||||||
@@ -28,9 +37,11 @@ def ensure_user(username):
|
|||||||
username
|
username
|
||||||
])
|
])
|
||||||
|
|
||||||
|
pm.hook.tljh_new_user_create(username=username)
|
||||||
|
|
||||||
subprocess.check_call([
|
subprocess.check_call([
|
||||||
'chmod',
|
'chmod',
|
||||||
'o-rwx',
|
'o-rwx',
|
||||||
expanduser('~{username}'.format(username=username))
|
expanduser('~{username}'.format(username=username))
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user