18 lines
524 B
YAML
18 lines
524 B
YAML
# -*- mode: yaml; indent-tabs-mode: nil; tab-width: 2; coding: utf-8-unix -*-
|
|
|
|
# APT::Clean-Installed off
|
|
|
|
- name: "/usr/local/etc/local.d/Whonix-Lati.rc"
|
|
blockinfile:
|
|
dest: /usr/local/etc/local.d/Whonix-Lati.rc
|
|
create: yes
|
|
mode: 0770
|
|
owner: "{{ BOX_USER_NAME }}"
|
|
group: "{{ BOX_ALSO_GROUP }}"
|
|
marker: "# {mark} ANSIBLE MANAGED BLOCK base Debian"
|
|
insertafter: EOF
|
|
block: |
|
|
/etc/init.d/console-setup.sh start
|
|
when:
|
|
- ansible_connection|default('') not in PLAY_CHROOT_CONNECTIONS
|