From 0cf2ecbc6250d901c03c9eb3a7ba35e7a1abc430 Mon Sep 17 00:00:00 2001 From: Robert de Bock Date: Wed, 14 Mar 2018 21:47:50 +0100 Subject: [PATCH] Update porting_guide_2.5.rst A fix to a minor typo. ("Previouslu" -> "Previously") label: docsite_pr --- docs/docsite/rst/porting_guides/porting_guide_2.5.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/porting_guides/porting_guide_2.5.rst b/docs/docsite/rst/porting_guides/porting_guide_2.5.rst index 2c5616ca597..1d70b6a3d13 100644 --- a/docs/docsite/rst/porting_guides/porting_guide_2.5.rst +++ b/docs/docsite/rst/porting_guides/porting_guide_2.5.rst @@ -181,7 +181,7 @@ Shell plugins have been migrated to the new plugin configuration framework. It i For example, ``system_temps`` is a new setting that allows you to control what Ansible will consider a 'system temporary dir'. This is used when escalating privileges for a non-administrative user. Previously this was hardcoded to '/tmp', which some systems cannot use for privilege escalation. This setting now defaults to ``[ '/var/tmp', '/tmp']``. -Another new setting is ``admin_users`` which allows you to specify a list of users to be considered 'administrators'. Previouslu this was hardcoded to ``root``. It now it defaults to ``[root, toor, admin]``. This information is used when choosing between your ``remote_temp`` and ``system_temps`` directory. +Another new setting is ``admin_users`` which allows you to specify a list of users to be considered 'administrators'. Previously this was hardcoded to ``root``. It now it defaults to ``[root, toor, admin]``. This information is used when choosing between your ``remote_temp`` and ``system_temps`` directory. For a full list, check the shell plugin you are using, the default shell plugin is ``sh``.