mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
7 lines
232 B
Plaintext
7 lines
232 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
def set_options(opt):
|
||
|
opt.add_option('--accel-aes',
|
||
|
help=("Should we use accelerated AES crypto functions. Options are intelaesni|none."),
|
||
|
action="store", dest='accel_aes', default="none")
|