forked from data.coop/ansible
Add a way to only run the base role.
This commit is contained in:
parent
f905696264
commit
aecb929dbb
|
@ -15,5 +15,9 @@ else
|
|||
echo "Deploying services: $2"
|
||||
$BASE_CMD --tags setup_services --extra-vars "services=$2"
|
||||
fi
|
||||
;;
|
||||
"base")
|
||||
$BASE_CMD --tags base_only
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
|
|
@ -35,5 +35,7 @@
|
|||
tasks:
|
||||
- import_role:
|
||||
name: ubuntu_base
|
||||
tags:
|
||||
- base_only
|
||||
- import_role:
|
||||
name: docker
|
||||
|
|
Loading…
Reference in a new issue