mirror of
https://github.com/Telecominfraproject/openafc_final.git
synced 2025-11-03 03:27:45 +00:00
16 lines
460 B
Bash
16 lines
460 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright 2022 Broadcom. All rights reserved. The term "Broadcom"
|
|
# refers solely to the Broadcom Inc. corporate affiliate that owns
|
|
# the software below. This work is licensed under the OpenAFC Project License,
|
|
# a copy of which is included with this software program
|
|
#
|
|
|
|
if [[ -z "${K8S_CRON}" ]]; then
|
|
crond -b
|
|
sleep infinity
|
|
else
|
|
/usr/bin/rat-manage-api cert_id sweep --country US
|
|
/usr/bin/rat-manage-api cert_id sweep --country CA
|
|
fi
|