pyceo/ceo/cli/postgresql.py

27 lines
684 B
Python
Raw Normal View History

2021-09-04 01:34:53 -04:00
import click
2021-09-11 12:52:33 -04:00
from .database import create as db_create, pwreset as db_pwreset, delete as db_delete
2021-09-10 01:39:46 -04:00
2021-09-04 01:34:53 -04:00
@click.group(short_help='Perform operations on PostgreSQL')
def postgresql():
pass
@postgresql.command(short_help='Create a PostgreSQL database for a user')
@click.argument('username')
def create(username):
2021-09-11 12:52:33 -04:00
db_create(username, 'postgresql')
2021-09-04 01:34:53 -04:00
@postgresql.command(short_help='Reset the password of a PostgreSQL user')
@click.argument('username')
def pwreset(username):
2021-09-11 12:52:33 -04:00
db_pwreset(username, 'postgresql')
2021-09-04 01:34:53 -04:00
2021-09-10 01:39:46 -04:00
@postgresql.command(short_help="Delete the database of a PostgreSQL user")
@click.argument('username')
def delete(username):
2021-09-11 12:52:33 -04:00
db_delete(username, 'postgresql')