Guest User

Untitled

a guest
Oct 2nd, 2018
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.77 KB | None | 0 0
  1. commit b11a8fc8e0a8189035ee7226d9e3d0e489e7fe69
  2. Merge: 22d753364b 7974ff7264
  3. Author: Nicole Thomas <nicole@saltstack.com>
  4. Date: Mon Mar 12 14:52:22 2018 -0400
  5.  
  6. Merge pull request #46450 from gtmanfred/salt_runner
  7.  
  8. load grains for salt.cmd runner
  9.  
  10. commit 7974ff7264f145722eaf554a10abfbca26c6778f
  11. Author: Daniel Wallace <danielwallace@gtmanfred.com>
  12. Date: Thu Mar 8 09:19:18 2018 -0700
  13.  
  14. load grains for salt.cmd runner
  15.  
  16. Without this, none of the modules like pkg.install or service.restart can be
  17. used because there are no grains for the __virtual__ function to check.
  18.  
  19. commit a3c54b50f6f72badfc3adfd5505a8341beb55421
  20. Author: Benjamin Drung <benjamin.drung@profitbricks.com>
  21. Date: Thu Mar 8 10:42:02 2018 +0100
  22.  
  23. Fix various spelling mistakes
  24.  
  25. lintian found various spelling mistakes.
  26.  
  27. Signed-off-by: Benjamin Drung <benjamin.drung@profitbricks.com>
  28.  
  29. commit 8c2c4e3316ab5ce010a98fecbcc20b47a3737ea8
  30. Merge: 978e869490 9c92aadce8
  31. Author: Nicole Thomas <nicole@saltstack.com>
  32. Date: Fri Mar 2 13:46:06 2018 -0500
  33.  
  34. Merge pull request #46208 from terminalmage/audit-umask-usage
  35.  
  36. Blacklist os.umask
  37.  
  38. commit 509429f08c8e8c1f2b30baa81108be36c5e859a1
  39. Merge: a97a3e6fb0 b1ce2501fd
  40. Author: Nicole Thomas <nicole@saltstack.com>
  41. Date: Wed Feb 28 17:05:25 2018 -0500
  42.  
  43. Merge pull request #46260 from terminalmage/git_pillar
  44.  
  45. Normalize global git_pillar/winrepo config items
  46.  
  47. commit b1ce2501fd09a87fb468801614729c52b9c7cc07
  48. Author: Erik Johnson <palehose@gmail.com>
  49. Date: Wed Feb 28 13:07:11 2018 -0600
  50.  
  51. Normalize global git_pillar/winrepo config items
  52.  
  53. We were only normalizing the global version of a config parameter if it
  54. had a per-remote counterpart. This was all well and good for gitfs,
  55. which doesn't have any config values that are global-only, but
  56. git_pillar and winrepo have config params which are global-only, and
  57. they were therefore not being normalized.
  58.  
  59. This fixes that oversight, and also makes a few other changes in
  60. salt.utils.gitfs to ensure that we're not pulling from the un-normalized
  61. values from the opts dict, when we need to fall back to global defaults.
  62.  
  63. Additionally, it fixes an issue in which the `git_pillar_branch` config
  64. item was overriding the branch set in a git_pillar remote.
  65.  
  66. commit 91b4895087b478e5c51a9c3ea08a63d119180de4
  67. Author: Erik Johnson <palehose@gmail.com>
  68. Date: Wed Feb 28 10:17:27 2018 -0600
  69.  
  70. Add documentation to the fileserver runner
  71.  
  72. This clears up some confusion about discrepancies between the available
  73. files and the files that show up when the runner functions are used, if
  74. the fileserver configuration has been updated since the last time the
  75. master daemon has been restarted.
  76.  
  77. commit 31b1d98fcb1fa3e7811025b959d7e854ef4716d8
  78. Author: Erik Johnson <palehose@gmail.com>
  79. Date: Mon Feb 26 21:03:43 2018 -0600
  80.  
  81. Replace direct use of os.umask with use of existing context manager
  82.  
  83. In cases where os.umask was being used simply to get the umask, a new
  84. helper function has been added to keep improper direct usage of os.umask
  85. from permanenly modifying the umask.
  86.  
  87. commit 467ff841cdfc1f81fa32efd4aa29d2ab3b3452ab
  88. Author: Erik Johnson <palehose@gmail.com>
  89. Date: Thu Feb 22 10:01:40 2018 -0600
  90.  
  91. pillarenv argument should default to None and not the value from opts
  92.  
  93. commit 2a185855ea89ac5bd9a87a80914cfb5a81d9cf7e
  94. Author: Erik Johnson <palehose@gmail.com>
  95. Date: Thu Feb 22 09:19:41 2018 -0600
  96.  
  97. Better solution for fixing the opts munging in pillar.show_pillar runner
  98.  
  99. The pillarenv argument to the `Pillar` class is only used as an override
  100. of what is in the opts. Therefore, it should default to None unless
  101. passed in the kwargs.
  102.  
  103. This also removes the need for a deepcopy of the opts, since we're no
  104. longer making changes to the opts before passing them to the `Pillar`
  105. constructor.
  106.  
  107. commit f9a6c86e21d9cf108ec6328e5f021b451f103328
  108. Author: Erik Johnson <palehose@gmail.com>
  109. Date: Wed Feb 21 17:12:01 2018 -0600
  110.  
  111. salt.runners.pillar.show_pillar: don't modify master opts
  112.  
  113. This keeps us from modifying the master opts when compiling pillar data
  114. in this runner.
  115.  
  116. commit e0940a9fc4a82f8ffd4bcfd41182ea8cb6e19852
  117. Author: Erik Johnson <palehose@gmail.com>
  118. Date: Wed Feb 21 17:08:15 2018 -0600
  119.  
  120. Properly detect use of the state.orch alias and add orch jid to kwargs
  121.  
  122. Before, only when `salt-run state.orchestrate` was used would we add the
  123. orch jid to the kwargs.
  124.  
  125. commit 68c7f3dcba478545de2d761b4024e17a3fb12402
  126. Author: kstreee <kstreee@gmail.com>
  127. Date: Fri Feb 2 14:22:49 2018 +0900
  128.  
  129. Adds a missing return statement.
  130.  
  131. commit e1403b6813e0969025d4c9b001dea14f750e98c8
  132. Merge: 4b2c88e2e6 c7d2081390
  133. Author: Nicole Thomas <nicole@saltstack.com>
  134. Date: Wed Jan 17 12:17:58 2018 -0500
  135.  
  136. Merge pull request #45444 from rallytime/bp-45343
  137.  
  138. Back-port #45343 to 2017.7
  139.  
  140. commit 2f63a6dbf4b21bec2bd37a2f721b153f7c050862
  141. Author: Erik Johnson <palehose@gmail.com>
  142. Date: Wed Dec 20 08:37:18 2017 -0600
  143.  
  144. Optimization: don't allocate a new list to concatenate
  145.  
  146. commit 5074741130f84b357155c4379564a70abc19ac25
  147. Author: Erik Johnson <palehose@gmail.com>
  148. Date: Tue Dec 19 21:50:03 2017 -0600
  149.  
  150. EAFP
  151.  
  152. If the __pycache__ dir is not present, we will get an OSError, which we
  153. are already catching and ignoring. No need to check for that dir.
  154.  
  155. commit 85dbdc6a399c9ad33e6d97aa3f0fc93299e9e42b
  156. Author: Erik Johnson <palehose@gmail.com>
  157. Date: Tue Dec 19 21:41:02 2017 -0600
  158.  
  159. PY3: Make loader ignore .pyc files not in __pycache__
  160.  
  161. This keeps the loader from loading a PY2 .pyc file if it is present.
  162.  
  163. commit c7d2081390ed52017f6aefac1cff5eddd1278311
  164. Author: rrroo <31890542+rrroo@users.noreply.github.com>
  165. Date: Fri Jan 12 13:47:20 2018 +0100
  166.  
  167. Support expr_form for manage.up, manage.down
Add Comment
Please, Sign In to add comment