Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mailinabox
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
mailinabox
Commits
c74bef12
Commit
c74bef12
authored
Jul 29, 2014
by
Joshua Tauberer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
allow for network checks to be skips in setup while testing using SKIP_NETWORK_CHECKS=1
parent
66192392
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
Vagrantfile
Vagrantfile
+1
-0
start.sh
setup/start.sh
+3
-1
No files found.
Vagrantfile
View file @
c74bef12
...
@@ -22,6 +22,7 @@ Vagrant.configure("2") do |config|
...
@@ -22,6 +22,7 @@ Vagrant.configure("2") do |config|
export PUBLIC_IPV6=auto
export PUBLIC_IPV6=auto
export PRIMARY_HOSTNAME=auto-easy
export PRIMARY_HOSTNAME=auto-easy
export CSR_COUNTRY=US
export CSR_COUNTRY=US
#export SKIP_NETWORK_CHECKS=1
# Start the setup script.
# Start the setup script.
cd /vagrant
cd /vagrant
...
...
setup/start.sh
View file @
c74bef12
...
@@ -178,7 +178,9 @@ if [ "$PRIMARY_HOSTNAME" = "auto-easy" ]; then
...
@@ -178,7 +178,9 @@ if [ "$PRIMARY_HOSTNAME" = "auto-easy" ]; then
fi
fi
# Run some network checks to make sure setup on this machine makes sense.
# Run some network checks to make sure setup on this machine makes sense.
.
setup/network-checks.sh
if
[
-z
"
$SKIP_NETWORK_CHECKS
"
]
;
then
.
setup/network-checks.sh
fi
# Create the user named "user-data" and store all persistent user
# Create the user named "user-data" and store all persistent user
# data (mailboxes, etc.) in that user's home directory.
# data (mailboxes, etc.) in that user's home directory.
...
...
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