Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Piotr Gawron
minerva-scripts
Commits
852961ee
Commit
852961ee
authored
Mar 19, 2021
by
Piotr Gawron
Browse files
make sure that we don't override existing partition
parent
5b1c13a7
Changes
1
Show whitespace changes
Inline
Side-by-side
server/create-partition.sh
View file @
852961ee
...
...
@@ -6,6 +6,9 @@ db_location="/var/lib/postgresql"
#check if disk is available
if
[
-e
$db_disk
]
then
mounted
=
`
mount |grep
"
$db_disk
"
|wc
-l
`
if
[
"
$mounted
"
=
"0"
]
then
file_system_ok
=
`
sudo
fsck
-N
/dev/vdb |grep ext4 |wc
-l
`
if
[
"
$file_system_ok
"
=
"0"
]
...
...
@@ -21,6 +24,11 @@ then
echo
"File system alredy exists. Aborting"
exit
1
fi
else
echo
"Partinion mounted. Skipping"
mount |grep
"
$db_disk
"
fi
else
echo
"Disk for database not found:
$db_disk
"
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment