Remove the --nspawn-extra-args cli option

Providing extra arguments to pass to systemd-nspawn is still possible
through the `nspawn_connection` of the `ansible.cfg` file.
This commit is contained in:
Thomas Szymanski 2017-01-11 19:24:37 +01:00 committed by Brian Coca
parent 1fc7211181
commit b8125ac1a6
2 changed files with 1 additions and 5 deletions

View file

@ -355,8 +355,6 @@ class CLI(with_metaclass(ABCMeta, object)):
help="specify extra arguments to pass to scp only (e.g. -l)")
connect_group.add_option('--ssh-extra-args', default='', dest='ssh_extra_args',
help="specify extra arguments to pass to ssh only (e.g. -R)")
connect_group.add_option('--nspawn-extra-args', default='', dest='nspawn_extra_args',
help="specify extra arguments to pass to systemd-nspawn only (e.g. --bind)")
parser.add_option_group(connect_group)