Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
haf_api_node
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
hive
haf_api_node
Commits
b9ca4dcd
Commit
b9ca4dcd
authored
1 week ago
by
Eric Frias
Browse files
Options
Downloads
Patches
Plain Diff
Remove unnecessary sudo (this script only runs as root)
parent
beca53da
No related branches found
No related tags found
1 merge request
!85
Don't hard-code the 'haf-world' docker-compose prefix in assisted startup.
Pipeline
#118959
failed
1 week ago
Stage: build
Stage: replay
Stage: test
Stage: cleanup
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
assisted_startup.sh
+13
-13
13 additions, 13 deletions
assisted_startup.sh
with
13 additions
and
13 deletions
assisted_startup.sh
+
13
−
13
View file @
b9ca4dcd
...
...
@@ -226,11 +226,11 @@ if [[ $? == 1 ]]; then
fi
echo
"Total free space on NVMEs:
$((
$TOTAL_SPACE
/
1000000000
))
G"
echo
"Found NVME devices:
$NVMES
"
echo
"
sudo
$CALLSTRING
"
echo
"
$CALLSTRING
"
read
-p
"Create a zpool with these drives? (Y or N): "
choice
if
[[
"
$choice
"
==
"Y"
||
"
$choice
"
==
"y"
]]
;
then
echo
"Creating zpool..."
sudo
$CALLSTRING
$CALLSTRING
if
[[
$?
==
0
]]
;
then
echo
"zpool created successfully."
else
...
...
@@ -277,10 +277,10 @@ else
if
[[
$physical_memory
-ge
60
&&
$free_memory
-gt
30
&&
$NO_RAMDISK
!=
1
]]
;
then
echo
"There is more than 64 gigabytes of RAM. Mounting shared_mem..."
if
[
!
-d
"/mnt/haf_shared_mem"
]
;
then
sudo
mkdir
/mnt/haf_shared_mem
mkdir
/mnt/haf_shared_mem
fi
sudo
mount
-t
tmpfs
-o
size
=
25g tmpfs /mnt/haf_shared_mem
sudo
chown
1000:100 /mnt/haf_shared_mem
mount
-t
tmpfs
-o
size
=
25g tmpfs /mnt/haf_shared_mem
chown
1000:100 /mnt/haf_shared_mem
remove_shared_mem
=
25
else
remove_shared_mem
=
0
...
...
@@ -387,10 +387,10 @@ while read -r line; do
lowest_priority_file
=
"/swapfile"
swap_type
=
"file"
fi
sudo
dd
if
=
/dev/zero
of
=
$lowest_priority_file
+
count
=
32K
bs
=
1M
sudo
chmod
600
$lowest_priority_file
+
sudo
mkswap
$lowest_priority_file
+
sudo
swapon
$lowest_priority_file
+
dd
if
=
/dev/zero
of
=
$lowest_priority_file
+
count
=
32K
bs
=
1M
chmod
600
$lowest_priority_file
+
mkswap
$lowest_priority_file
+
swapon
$lowest_priority_file
+
making_swap
=
0
made_swap
=
1
else
...
...
@@ -428,9 +428,9 @@ else
# Move the shared_mem file to the blockchain directory
if
[[
$remove_shared_mem
!=
0
]]
;
then
sed
-i
"s#^
$modified_HAF_SHM
#
$original_HAF_SHM
#g"
.env
sudo cp
/mnt/haf_shared_mem/shared_memory.bin /
$ZPOOL
/
$TOP_LEVEL_DATASET
/shared_memory
sudo
chown
1000:100 /
$ZPOOL
/
$TOP_LEVEL_DATASET
/shared_memory/shared_memory.bin
sudo
umount /mnt/haf_shared_mem
cp
--sparse
=
always
/mnt/haf_shared_mem/shared_memory.bin /
$ZPOOL
/
$TOP_LEVEL_DATASET
/shared_memory
chown
1000:100 /
$ZPOOL
/
$TOP_LEVEL_DATASET
/shared_memory/shared_memory.bin
umount /mnt/haf_shared_mem
fi
...
...
@@ -440,7 +440,7 @@ else
fi
# Create a snapshot of the ZFS pool
sudo
./snapshot_zfs_datasets.sh
$SNAPSHOT_NAME
./snapshot_zfs_datasets.sh
$SNAPSHOT_NAME
# Restart Docker Compose
docker compose up
-d
...
...
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