Skip to content
Snippets Groups Projects
Commit 366db43d authored by Tanner Prestegard's avatar Tanner Prestegard Committed by GraceDB
Browse files

Add new certificate for MBTA

parent c88a7011
No related branches found
No related tags found
No related merge requests found
Pipeline #67563 passed with warnings
# -*- coding: utf-8 -*-
# Generated by Django 1.11.20 on 2019-06-20 02:59
from __future__ import unicode_literals
from django.db import migrations
ACCOUNT = {
'name': 'MbtaAlert',
'new_cert': '/DC=org/DC=cilogon/C=US/O=LIGO/OU=Robots/CN=lscgw.virgo.infn.it/CN=MbtaAlert/CN=Antonella Bozzi/CN=UID:antonella.bozzi.robot',
}
def add_cert(apps, schema_editor):
RobotUser = apps.get_model('ligoauth', 'RobotUser')
# Get user
user = RobotUser.objects.get(username=ACCOUNT['name'])
# Create new certificate
user.x509cert_set.create(subject=ACCOUNT['new_cert'])
def delete_cert(apps, schema_editor):
RobotUser = apps.get_model('ligoauth', 'RobotUser')
# Get user
user = RobotUser.objects.get(username=ACCOUNT['name'])
# Delete new certificate
cert = user.x509cert_set.get(subject=ACCOUNT['new_cert'])
cert.delete()
class Migration(migrations.Migration):
dependencies = [
('ligoauth', '0034_add_gstlal_cert'),
]
operations = [
migrations.RunPython(add_cert, delete_cert),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment