ansible-role-systemd_mount/tests/test-create-ext4-dev.yml
Jonathan Rosser 229c94c620 Switch filesystem mount test from btrfs to ext4
BTRFS is not available on centos-8 so switch the test to ext4 instead.

Change-Id: I9bcbbe4dd2ed94f2c6db1af5f927e68f079c8a7a
2020-09-28 12:16:12 +00:00

39 lines
1.1 KiB
YAML

---
# Copyright 2017, BBC R&D
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Configure ext4 sparse file
hosts: localhost
user: root
become: true
connection: local
tasks:
- name: Create base directories
file:
path: "/var/lib"
state: "directory"
- name: Create sparse file
command: "truncate -s 1024G /var/lib/sparse-file.img"
args:
creates: /var/lib/sparse-file.img
register: sparse_file
- name: Format the sparse file
filesystem:
fstype: ext4
dev: /var/lib/sparse-file.img
when:
- sparse_file is changed