You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`message`|`Hello World!`| false | This will be the message which is getting displayed |
10
10
11
-
## Variable `pgi_packages`
12
-
13
-
An extended example of only the `pgi_packages` variable is illustrated down below:
14
-
```
15
-
pgi_packages:
16
-
- name: 'qemu-guest-agent'
17
-
state: 'latest'
18
-
19
-
- name: 'openssh-server'
20
-
state: 'present'
21
-
22
-
- name: 'vim'
23
-
```
24
-
The only required option for a package is the `name`. The `state` can be either `latest`, to install the latest available version (so upgrade if it is already present), or `present`
25
-
to ensure that the package exists, which is also the default, if the `state` has not been defined.
0 commit comments