Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
backupninja
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Liberate
backupninja
Commits
52e4a2e3
Verified
Commit
52e4a2e3
authored
2 years ago
by
Jérôme Charaoui
Browse files
Options
Downloads
Patches
Plain Diff
improve robustness of sys tests
parent
641aa8d6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/sys.bats
+7
-6
7 additions, 6 deletions
test/sys.bats
with
7 additions
and
6 deletions
test/sys.bats
+
7
−
6
View file @
52e4a2e3
...
...
@@ -25,6 +25,8 @@ EOF
# Setup LUKS
parted -s /dev/sdd mklabel msdos mkpart p 1MiB 50% mkpart p 50% 100%
partprobe
test -b /dev/sdd1
test -b /dev/sdd2
cryptsetup -q --type luks1 luksFormat /dev/sdd1 <<< 123test
cryptsetup -q --type luks2 luksFormat /dev/sdd2 <<< 123test
cryptsetup -q --type luks2 luksFormat /dev/sde <<< 123test
...
...
@@ -37,12 +39,11 @@ finish_sys() {
lvremove -f vgtest/lvtest
vgremove vgtest
pvremove /dev/sdc
# cleanup luks data and partition tables
dd if=/dev/zero of=/dev/sdc bs=512 count=1 conv=notrunc
dd if=/dev/zero of=/dev/sdd1 bs=512 count=2048 conv=notrunc
dd if=/dev/zero of=/dev/sdd2 bs=512 count=2048 conv=notrunc
dd if=/dev/zero of=/dev/sdd bs=512 count=1 conv=notrunc
dd if=/dev/zero of=/dev/sde bs=512 count=2048 conv=notrunc
# cleanup luks headers and partition tables
for d in /dev/sdc /dev/sdd1 /dev/sdd2 /dev/sdd /dev/sde; do
cryptsetup isLuks $dev && cryptsetup luksErase $dev <<< YES
test -b $dev && dd if=/dev/zero of=$dev bs=512 count=2048 conv=notrunc
done
partprobe
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment