app check() Compare settings to system defaults Source code in hpcman/user/app.py 49 50 51 52 53 54@app.command() def check() -> None: """ Compare settings to system defaults """ raise CommandNotImplemented("user module has not been implemented.") enable() Enable configuration of environment variables using hpcman Source code in hpcman/user/app.py 57 58 59 60 61 62@app.command() def enable() -> None: """ Enable configuration of environment variables using hpcman """ raise CommandNotImplemented("user module has not been implemented.") info() Get configuration info for user Source code in hpcman/user/app.py 17 18 19 20 21 22@app.command() def info() -> None: """ Get configuration info for user """ raise CommandNotImplemented("user module has not been implemented.") quota() Check user disk quota Source code in hpcman/user/app.py 33 34 35 36 37 38@app.command() def quota() -> None: """ Check user disk quota """ raise CommandNotImplemented("user module has not been implemented.") set() Set configuration info for user Source code in hpcman/user/app.py 25 26 27 28 29 30@app.command() def set() -> None: """ Set configuration info for user """ raise CommandNotImplemented("user module has not been implemented.") ssh() Check sshkey setup and provide help Source code in hpcman/user/app.py 41 42 43 44 45 46@app.command() def ssh() -> None: """ Check sshkey setup and provide help """ raise CommandNotImplemented("user module has not been implemented.") user() Get and/or set user env variables, preferred program versions, and quota Source code in hpcman/user/app.py 10 11 12 13 14@app.callback() def user() -> None: """ Get and/or set user env variables, preferred program versions, and quota """