diff options
author | binary <me@rgoncalves.se> | 2021-03-05 19:56:48 +0100 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2021-03-05 19:56:48 +0100 |
commit | fa4a4a8a6ff33a744ce9900d768fee3a11038013 (patch) | |
tree | 2866b4baeeda5e9f347290b5cc40f6b5fd5139c5 /roles/common/tasks/init_alpine.yml | |
parent | 817bb2df9606bc17929d04b927e4dca2934b3399 (diff) | |
download | infrastructure-fa4a4a8a6ff33a744ce9900d768fee3a11038013.tar.gz |
Cleanup common role
Diffstat (limited to 'roles/common/tasks/init_alpine.yml')
-rw-r--r-- | roles/common/tasks/init_alpine.yml | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/roles/common/tasks/init_alpine.yml b/roles/common/tasks/init_alpine.yml deleted file mode 100644 index 68689bc..0000000 --- a/roles/common/tasks/init_alpine.yml +++ /dev/null @@ -1,38 +0,0 @@ - -# common ~~ tasks/init_alpine.yml -# specific tasks for Alpine initalization - ---- - -- name: Setup repositories for Alpine - shell: | - echo "https://mirror.ungleich.ch/mirror/packages/alpine/edge/main/" > /etc/apk/repositories - echo "https://mirror.ungleich.ch/mirror/packages/alpine/edge/community/" >> /etc/apk/repositories - echo "https://mirror.ungleich.ch/mirror/packages/alpine/edge/releases/" >> /etc/apk/repositories - -- name: Download virtio_vmmci - git: - repo: "https://github.com/voutilad/virtio_vmmci" - dest: /data/git/virtio_vmmci - -- name: Install virtio_vmmci - shell: make && make install && modprobe virtio_vmmci - args: - chdir: /data/git/virtio_vmmci - -- name: Enable virtio_vmmci module - shell: echo "virtio_vmmci" > /etc/modules-load.d/virtio_vmmci.conf - -- name: Download vmm_clock module - git: - repo: "https://github.com/voutilad/vmm_clock" - dest: /data/git/vmm_clock - -- name: Install vmm_clock module - shell: make && make install && modprobe vmm_clock - args: - chdir: /data/git/vmm_clock - -- name: Enable vmm_clock module - shell: echo "vmm_clock" > /etc/modules-load.d/vmm_clock.conf - |