diff options
author | Scott Moser <smoser@brickies.net> | 2016-10-04 16:44:29 -0400 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2016-10-04 16:44:29 -0400 |
commit | c83e19dc07b284f008120fb0c72439c5f91042ae (patch) | |
tree | a368cbb9170b2da6ffb623802580381b12bae4be /cloudinit/config/cc_package_update_upgrade_install.py | |
parent | 1bf130a7e1157d83f073131beaa92d3169255229 (diff) | |
parent | 94fd35eeb3f53bc82fb9ddcad60c1e605890fd53 (diff) | |
download | vyos-cloud-init-c83e19dc07b284f008120fb0c72439c5f91042ae.tar.gz vyos-cloud-init-c83e19dc07b284f008120fb0c72439c5f91042ae.zip |
merge from master at 0.7.8-14-g94fd35e
Diffstat (limited to 'cloudinit/config/cc_package_update_upgrade_install.py')
-rw-r--r-- | cloudinit/config/cc_package_update_upgrade_install.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/cloudinit/config/cc_package_update_upgrade_install.py b/cloudinit/config/cc_package_update_upgrade_install.py index 73b0e30d..6d717616 100644 --- a/cloudinit/config/cc_package_update_upgrade_install.py +++ b/cloudinit/config/cc_package_update_upgrade_install.py @@ -16,6 +16,41 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +""" +Package Update Upgrade Install +------------------------------ +**Summary:** update, upgrade, and install packages + +This module allows packages to be updated, upgraded or installed during boot. +If any packages are to be installed or an upgrade is to be performed then the +package cache will be updated first. If a package installation or upgrade +requires a reboot, then a reboot can be performed if +``package_reboot_if_required`` is specified. A list of packages to install can +be provided. Each entry in the list can be either a package name or a list with +two entries, the first being the package name and the second being the specific +package version to install. + +**Internal name:** ``cc_package_update_upgrade_install`` + +**Module frequency:** per instance + +**Supported distros:** all + +**Config keys**:: + + packages: + - pwgen + - pastebinit + - [libpython2.7, 2.7.3-0ubuntu3.1] + package_update: <true/false> + package_upgrade: <true/false> + package_reboot_if_required: <true/false> + + apt_update: (alias for package_update) + apt_upgrade: (alias for package_upgrade) + apt_reboot_if_required: (alias for package_reboot_if_required) +""" + import os import time |