Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Ansible CI
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
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
KSZK
Ansible
Ansible CI
Commits
108f8f38
Commit
108f8f38
authored
4 years ago
by
Robotka István Adrián
Browse files
Options
Downloads
Patches
Plain Diff
format bootstrap.sh
parent
bbf8159c
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
playbook-template/bootstrap.sh
+15
-13
15 additions, 13 deletions
playbook-template/bootstrap.sh
with
15 additions
and
13 deletions
playbook-template/bootstrap.sh
+
15
−
13
View file @
108f8f38
#!/usr/bin/env bash
########################### Config ####################################
reporaw
=
"https://git.sch.bme.hu/kszk/sysadmin/ansible/ansci/-/raw/master/playbook-template"
########################### Methods ####################################
download
()
{
local
url
=
"
$1
"
local
dest
=
"
$2
"
if
command
-v
wget &>/dev/null
then
if
command
-v
wget &>/dev/null
;
then
wget
"
$url
"
-O
"
$dest
"
else
curl
"
$url
"
-O
"
$dest
"
...
...
@@ -17,10 +20,12 @@ downloadFile() {
download
"
$reporaw
/
$1
"
"
$1
"
}
########################### Virtualenv setup ####################################
downloadFile
"requirements.python.txt"
if
!
command
-v
virtualenv
&>/dev/null
then
# check existance of
virtualenv
command
if
!
command
-v
virtualenv &>/dev/null
;
then
echo
"This command needs virtualenv to run."
echo
"Install it like this:"
printf
"
\t
pip3 install --user virtualenv
\n
"
...
...
@@ -28,19 +33,16 @@ then
exit
1
fi
if
[[
!
-d
.venv
]]
then
virtualenv .venv
fi
# create virtualenv if not present
[[
!
-d
.venv
]]
&&
virtualenv .venv
source
.venv/bin/activate
pip
install
-r
requirements.python.txt
########################### Ansible setup ####################################
ansible-galaxy
install
-r
requirements.galaxy.yml
ansible-playbook
-i
inventory.yaml playbook.yml
# to stay in our comfy virtualenv
if
[[
-z
"
$SHELL
"
]]
then
SHELL
=
"bash"
fi
exec
"
$SHELL
"
exec
"
${
SHELL
:bash
}
"
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