Skip to content

app

check()

Compare settings to system defaults

Source code in hpcman/user/app.py
@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
@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
@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
@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
@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
@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
@app.callback()
def user() -> None:
    """
    Get and/or set user env variables, preferred program versions, and quota
    """