Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ansible_mountHDD2
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sti-cluster
ansible_mountHDD2
Merge requests
!6
Fix mount hdd ext4
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix mount hdd ext4
fixMountHDDExt4
into
master
Overview
0
Commits
9
Pipelines
0
Changes
2
Merged
Pullyvan Krishnamoorthy
requested to merge
fixMountHDDExt4
into
master
3 years ago
Overview
0
Commits
9
Pipelines
0
Changes
2
Expand
Remove all unnecessary code by adding ansible supported command
👍
0
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
5d5ed645
9 commits,
3 years ago
2 files
+
37
−
76
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
tasks/centos.yml
+
18
−
40
Options
@@ -14,52 +14,30 @@
-
parted.x86_64
-
parted-devel.x86_64
-
name
:
Unmount a mounted
volu
me
-
name
:
Unmount a mounted
/ho
me
ansible.posix.mount
:
path
:
/home
state
:
unmounted
ignore_errors
:
yes
-
name
:
Create a new partition on hdd2
become
:
yes
parted
:
name
:
home
part_type
:
primary
label
:
gpt
number
:
1
device
:
/dev/nvme0n1
state
:
present
ignore_errors
:
yes
-
name
:
Get System Details
stat
:
path={{ dev }}
register
:
check_mount
when
:
hdd2.stat.exists == False
-
name
:
Check the type of filesystem if its data we need to format
shell
:
file -s {{ dev }}
register
:
fs
when
:
hdd2.stat.exists == False
-
name
:
setting facts
set_fact
:
format_fs
:
true
when
:
"
'{{
dev
}}:
data'
in
fs.stdout"
-
name
:
Format a ext4 filesystem on {{ dev }}
-
name
:
Create a ext4 filesystem on /dev/nvme0n1
community.general.filesystem
:
fstype
:
"
{{
fstype
}}"
dev
:
"
{{
dev
}}"
fstype
:
ext4
dev
:
/dev/nvme0n1
force
:
yes
-
name
:
Mount
filesystem
-
name
:
Mount
up device by /dev/nvme0n1 on /home in fstab
mount
:
fstype
:
"
{{
fstype
}}"
src
:
"
{{
dev
}}"
name
:
"
{{
mount
}}"
opts
:
"
{{
opts
}}"
state
:
"
{{
state
}}"
register
:
mount_info
path
:
/home
src
:
/dev/nvme0n1
fstype
:
ext4
state
:
present
-
name
:
Remount a mounted volume /home
ansible.posix.mount
:
path
:
/home
src
:
/dev/nvme0n1
fstype
:
ext4
state
:
mounted
Loading