Sha256: 40265dae2086b34e7afce3a26dc8f06c39656cda0e99258f310f31144a1130cf

Contents?: true

Size: 714 Bytes

Versions: 4

Compression:

Stored size: 714 Bytes

Contents

# System configuration
#
# This will set the locals and the timezone

- set_locales:
  # uncomment the locales
  - exec_in: |
      echo $$locales | tr ' ' '\n' | xargs -I {} localedef -v -c -i {} -i {} -f UTF-8 $$lang 2>&1 || :

- set_timezone:
  - exec_in: ln -sf /usr/share/zoneinfo/$$timezone /etc/localtime

- set_wheel_sudo:
  - exec_in: echo "%wheel      ALL=(ALL) ALL" >> /etc/sudoers

- remove_random_seed:
  - exec_in: echo "Removing random-seed so it's not the same in every image."
  - exec_in: rm -f /var/lib/random-seed

- compress_cracklib:
  - exec_in: gzip -9 /usr/share/cracklib/pw_dict.pwd

- enable_sshd:
  - exec_in: chkconfig sshd on

- enable_ntpdate_service:
  - exec_in: chkconfig ntpd on

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
kameleon-builder-2.2.3 templates/steps/setup/centos/6.5/configure_system.yaml
kameleon-builder-2.2.2 templates/steps/setup/centos/6.5/configure_system.yaml
kameleon-builder-2.2.1 templates/steps/setup/centos/6.5/configure_system.yaml
kameleon-builder-2.2.0 templates/steps/setup/centos/6.5/configure_system.yaml