123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- - name: "create repository's root directory {{ borgbackup_sshd_repository_path }}"
- file:
- path: '{{ borgbackup_sshd_repository_path }}'
- state: directory
- mode: u=rwx,go=x
- register: _repo_dir
- - docker_container:
- name: '{{ borgbackup_sshd_container_name }}'
- image: '{{ borgbackup_sshd_container_image }}'
- env:
- SSH_CLIENT_PUBLIC_KEYS: "{{ borgbackup_sshd_client_public_keys }}"
- SSH_CLIENT_PUBLIC_KEYS_APPEND_ONLY: "{{ borgbackup_sshd_client_public_keys_append_only }}"
- read_only: yes
- mounts:
- - type: volume
- source: '{{ borgbackup_sshd_container_name }}_host_keys'
- target: /etc/ssh/host_keys
- read_only: no
- - type: bind
- source: '{{ _repo_dir.path }}'
- target: /repository
- read_only: no
- - type: tmpfs
- target: /home/borg/.ssh # authorized_keys
- tmpfs_size: 16k
- tmpfs_mode: '1777'
- - type: tmpfs
- # > FileNotFoundError: [Errno 2] No usable temporary directory found [...]
- target: /tmp
- tmpfs_size: 1M
- tmpfs_mode: '1777'
- published_ports: ['0.0.0.0:{{ borgbackup_sshd_published_port }}:2200']
- cap_drop: [ALL]
- security_opts: [no-new-privileges]
- cpu_quota: 8000
- cpu_period: 10000
- # 64MiB was insufficient for two parallel operations, e.g. `borg create` & `borg list`
- memory: 128M
- restart_policy: unless-stopped
- state: started
- register: _container
- - name: determine offset of user namespace remapping
- stat:
- path: '{{ _container.container.ResolvConfPath }}'
- register: _container_resolvconf
- - name: adapt ownership of repository's root directory
- file:
- path: '{{ _repo_dir.path }}'
- owner: '{{ _container_resolvconf.stat.uid + 100 }}'
- - name: wait for host keys
- wait_for:
- path: "{{ (_container.container.Mounts | items2dict(key_name='Destination', value_name='Source'))['/etc/ssh/host_keys'] }}/{{ item }}.pub"
- loop: [rsa, ed25519]
- register: _host_keys_files
- - name: read host keys
- slurp:
- src: '{{ item }}'
- loop: "{{ _host_keys_files.results | map(attribute='path') | list }}"
- register: _host_keys_base64
- - name: decode host keys
- set_fact:
- borgbackup_sshd_host_keys: >-
- {{ _host_keys_base64.results | map(attribute='content') | map('b64decode') | map('trim') | list }}
|