#!/usr/bin/env python3

"""
This script is to be used when Canonical employees leave the company.
It strips users from their "global" privileges (Support provider, etc..._),
and removes their Landscape privileges (no more free account, removes the user
from all shared accounts).
"""

import canonical.landscape.scripts.canonical_leavers


if __name__ == "__main__":
    canonical.landscape.scripts.canonical_leavers.run()
