Add more comments
This commit is contained in:
parent
55756dd931
commit
7576128c56
3 changed files with 17 additions and 0 deletions
|
@ -1,10 +1,15 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
################################################################################
|
||||
################################################################################
|
||||
#
|
||||
# https://docs.debops.org/en/master/user-guide/install.html
|
||||
#
|
||||
# This scripts installs DebOps and its dependencies on a (fresh) system.
|
||||
# It creates a dedicated DebOps user (e.g. ansible) who should then execute all DebOps-playbooks.
|
||||
# This script only installs DebOps globally , it does not initiliaze any DebOps-project.
|
||||
#
|
||||
################################################################################
|
||||
|
||||
set -o nounset -o pipefail -o errexit
|
||||
|
||||
|
|
|
@ -6,6 +6,12 @@
|
|||
# This script calls the needed DebOps plays/roles in order to provision a new cloud VM,
|
||||
# then prepares the VM to be ansible managed and runs additional Ansible Playbooks in the correct order.
|
||||
#
|
||||
# Usage:
|
||||
# ./provisioning.sh -l <host-or-group-to-provision>
|
||||
#
|
||||
# You can also pass ansible parameter to DebOps
|
||||
# ./provisioning.sh -l <host-or-group-to-provision> -t role::pki --skip-tags role::owncloud --user root -vvv
|
||||
#
|
||||
################################################################################
|
||||
|
||||
set -o nounset -o pipefail -o errexit
|
||||
|
|
|
@ -6,6 +6,12 @@
|
|||
# This script calls the needed DebOps plays/roles in order to provision a new cloud VM,
|
||||
# then prepares the VM to be ansible managed and runs additional Ansible Playbooks in the correct order.
|
||||
#
|
||||
# Usage:
|
||||
# ./provisioning_ldap.sh -l <host-or-group-to-provision>
|
||||
#
|
||||
# You can also pass ansible parameter to DebOps
|
||||
# ./provisioning_ldap.sh -l <host-or-group-to-provision> -t role::pki --skip-tags role::owncloud --user root -vvv
|
||||
#
|
||||
################################################################################
|
||||
|
||||
set -o nounset -o pipefail -o errexit
|
||||
|
|
Loading…
Reference in a new issue