Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
flame-clmc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
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
flame
flame-clmc
Commits
d768cc2a
Commit
d768cc2a
authored
6 years ago
by
Stephen C Phillips
Browse files
Options
Downloads
Patches
Plain Diff
Correctly gets IP in destroy; adds more sleep in create
parent
ef0e2a57
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
clmctest/conts-create.sh
+1
-5
1 addition, 5 deletions
clmctest/conts-create.sh
clmctest/conts-destroy.sh
+3
-2
3 additions, 2 deletions
clmctest/conts-destroy.sh
with
4 additions
and
7 deletions
clmctest/conts-create.sh
+
1
−
5
View file @
d768cc2a
...
...
@@ -25,7 +25,7 @@ for service_name in $service_names; do
# start the container
lxc-start
-n
${
service_name
}
sleep
4
sleep
10
echo
"Provisioning:
${
service_name
}
"
if
[
${
service_name
}
==
"clmc-service"
]
...
...
@@ -47,10 +47,6 @@ for service_name in $service_names; do
influxdb_url
=
$(
echo
$SERVICE
| jq
-r
'.influxdb_url'
)
database_name
=
$(
echo
$SERVICE
| jq
-r
'.database_name'
)
echo
"*********************"
echo
$location
echo
$sf_id
cmd
=
/vagrant/clmctest/services/
${
sf_id
}
/install.sh
lxc-attach
-n
${
service_name
}
-v
REPO_ROOT
=
/vagrant
--
${
cmd
}
...
...
This diff is collapsed.
Click to expand it.
clmctest/conts-destroy.sh
+
3
−
2
View file @
d768cc2a
...
...
@@ -9,7 +9,8 @@ for service_name in $service_names; do
lxc-stop
-n
${
service_name
}
echo
"Destroying container:
${
service_name
}
"
lxc-destroy
-n
${
service_name
}
ip
=
$(
jq
-r
--arg
NAME
${
service_name
}
'.[] | select(.name==$NAME | .ip_address'
)
sed
-i
'/${ip}/d'
/etc/lxc/dnsmasq.conf
ip
=
$(
jq
-r
--arg
NAME
${
service_name
}
'.[] | select(.name==$NAME) | .ip_address'
${
rspec_file
}
)
#TODO: this line doesn't work for some reason and it's also dangerous because an IP could match more than 1 line in the file
#sed -i '/${ip}/d' /etc/lxc/dnsmasq.conf
fi
done
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