mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Add versionadded
This commit is contained in:
parent
4e7e6d8b3d
commit
499c8ea103
4 changed files with 12 additions and 2 deletions
|
@ -2,6 +2,8 @@
|
|||
Manage provisioned apps
|
||||
=======================
|
||||
|
||||
.. versionadded:: 3007.0
|
||||
|
||||
Provisioned apps are part of the image and are installed for every user the
|
||||
first time the user logs on. Provisioned apps are also updated and sometimes
|
||||
reinstalled when the system is updated.
|
||||
|
|
|
@ -518,7 +518,9 @@ def add_provisioned_package(package, image=None, restart=False):
|
|||
"""
|
||||
Provision a package using DISM. A provisioned package will install for new
|
||||
users on the system. It will also be reinstalled on each user if the system
|
||||
if updated.
|
||||
is updated.
|
||||
|
||||
.. versionadded:: 3007.0
|
||||
|
||||
Args:
|
||||
|
||||
|
@ -713,6 +715,8 @@ def provisioned_packages(image=None):
|
|||
"""
|
||||
List the packages installed on the system
|
||||
|
||||
.. versionadded:: 3007.0
|
||||
|
||||
Args:
|
||||
image (Optional[str]): The path to the root directory of an offline
|
||||
Windows image. If `None` is passed, the running operating system is
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
"""
|
||||
Manage Microsoft Store apps on Windows. Removing an app with this modules will
|
||||
deprovision the app from the online Windows image.
|
||||
|
||||
.. versionadded:: 3007.0
|
||||
"""
|
||||
import fnmatch
|
||||
import logging
|
||||
|
|
|
@ -389,7 +389,9 @@ def package_installed(
|
|||
|
||||
def provisioned_package_installed(name, image=None, restart=False):
|
||||
"""
|
||||
Install a package.
|
||||
Provision a package on a Windows image.
|
||||
|
||||
.. versionadded:: 3007.0
|
||||
|
||||
Args:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue