forked from privacyidea/privacyidea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pi-manage
executable file
·55 lines (51 loc) · 2.26 KB
/
pi-manage
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
# 2023-11-14 Paul Lettich
# 2020-11-18 Henning Hollermann <[email protected]>
# Allow import and export of events, resolvers and policies
# 2018-08-07 Cornelius Kölbel <[email protected]>
# Allow creation of HSM keys
# 2017-10-08 Cornelius Kölbel <[email protected]>
# Allow cleaning up different actions with different
# retention times.
# 2017-07-12 Cornelius Kölbel <[email protected]>
# Add generation of PGP keys
# 2017-02-23 Cornelius Kölbel <[email protected]>
# Add CA sub commands
# 2017-01-27 Diogenes S. Jesus
# Cornelius Kölbel <[email protected]>
# Add creation of more detailed policy
# 2016-04-15 Cornelius Kölbel <[email protected]>
# Add backup for pymysql driver
# 2016-01-29 Cornelius Kölbel <[email protected]>
# Add profiling
# 2015-10-09 Cornelius Kölbel <[email protected]>
# Set file permissions
# 2015-09-24 Cornelius Kölbel <[email protected]>
# Add validate call
# 2015-06-16 Cornelius Kölbel <[email protected]>
# Add creation of JWT token
# 2015-03-27 Cornelius Kölbel, [email protected]
# Add sub command for policies
# 2014-12-15 Cornelius Kölbel, [email protected]
# Initial creation
# SPDX-FileCopyrightText: (C) 2023 Paul Lettich
#
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# Info: https://privacyidea.org
#
# This code is free software: you can redistribute it and/or
# modify it under the terms of the GNU Affero General Public License
# as published by the Free Software Foundation, either
# version 3 of the License, or any later version.
#
# This code is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public
# License along with this program. If not, see <http://www.gnu.org/licenses/>.
from privacyidea.cli.pimanage import cli as pi_manage
if __name__ == '__main__':
pi_manage()