Replace docker rclone volumes with native cifs volumes
This commit is contained in:
parent
85568c8278
commit
635a0c4da8
12 changed files with 19 additions and 106 deletions
|
|
@ -1,29 +0,0 @@
|
|||
- name: Install fuse system packages
|
||||
ansible.builtin.apt:
|
||||
pkg:
|
||||
- fuse
|
||||
state: present
|
||||
update_cache: true
|
||||
become: true
|
||||
|
||||
- name: Create the rclone plugin config dir
|
||||
ansible.builtin.file:
|
||||
path: "/var/lib/docker-plugins/rclone/config"
|
||||
state: directory
|
||||
mode: "0755"
|
||||
become: true
|
||||
|
||||
- name: Create the rclone plugin cache dir
|
||||
ansible.builtin.file:
|
||||
path: "/var/lib/docker-plugins/rclone/cache"
|
||||
state: directory
|
||||
mode: "0755"
|
||||
become: true
|
||||
|
||||
- name: Install rclone plugin
|
||||
community.docker.docker_plugin:
|
||||
alias: rclone
|
||||
plugin_name: rclone/docker-volume-rclone:amd64
|
||||
plugin_options:
|
||||
args: "-v"
|
||||
state: enable
|
||||
|
|
@ -3,7 +3,6 @@
|
|||
pkg:
|
||||
- bzip2
|
||||
- jq
|
||||
- rclone
|
||||
- zsh
|
||||
state: present
|
||||
update_cache: true
|
||||
|
|
@ -11,8 +10,6 @@
|
|||
|
||||
- name: Install docker
|
||||
ansible.builtin.import_tasks: docker.yml
|
||||
- name: Install docker rclone plugin
|
||||
ansible.builtin.import_tasks: docker-rclone-plugin.yml
|
||||
- name: Install (auto-)restic
|
||||
ansible.builtin.import_tasks: restic.yml
|
||||
- name: Install systemd-resolved
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue