blob: d027d54064ec4272e528bce88efd5e70806010e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#
# Update/upgrade via apt and then install a pair of packages
#
cloud_config: |
#cloud-config
packages:
- htop
- tree
package_update: true
package_upgrade: true
collect_scripts:
apt_history_cmdline: |
#!/bin/bash
grep ^Commandline: /var/log/apt/history.log
dpkg_htop: |
#!/bin/bash
dpkg -l | grep htop | wc -l
dpkg_tree: |
#!/bin/bash
dpkg -l | grep tree | wc -l
# vi: ts=4 expandtab
|