blob: a9aa1f3f726c4f572ac64f95e0ddca1fefdc54a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#
# Install and enable byobu system wide and default user
#
required_features:
- byobu
cloud_config: |
#cloud-config
byobu_by_default: enable
collect_scripts:
byobu_installed: |
#!/bin/bash
which byobu
byobu_profile_enabled: |
#!/bin/bash
ls /etc/profile.d/Z97-byobu.sh
byobu_launch_exists: |
#!/bin/bash
which /usr/bin/byobu-launch
# vi: ts=4 expandtab
|