Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
edx
configuration
Commits
5e551d86
Commit
5e551d86
authored
Jan 27, 2014
by
John Jarvis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding role to stop all edx services
parent
cccc0004
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
135 additions
and
0 deletions
+135
-0
playbooks/roles/stop_all_edx_services/defaults/main.yml
+17
-0
playbooks/roles/stop_all_edx_services/handlers/main.yml
+56
-0
playbooks/roles/stop_all_edx_services/tasks/main.yml
+62
-0
No files found.
playbooks/roles/stop_all_edx_services/defaults/main.yml
0 → 100644
View file @
5e551d86
---
#
# edX Configuration
#
# github: https://github.com/edx/configuration
# wiki: https://github.com/edx/configuration/wiki
# code style: https://github.com/edx/configuration/wiki/Ansible-Coding-Conventions
# license: https://github.com/edx/configuration/blob/master/LICENSE.TXT
#
##
# Defaults for role stop_all_edx_services
#
#
# vars are namespace with the module name.
#
stop_all_edx_services_role_name
:
stop_all_edx_services
playbooks/roles/stop_all_edx_services/handlers/main.yml
0 → 100644
View file @
5e551d86
---
#
# edX Configuration
#
# github: https://github.com/edx/configuration
# wiki: https://github.com/edx/configuration/wiki
# code style: https://github.com/edx/configuration/wiki/Ansible-Coding-Conventions
# license: https://github.com/edx/configuration/blob/master/LICENSE.TXT
#
#
#
# Handlers for role stop_all_edx_services
#
# Overview:
#
# This stops all services on an edX server
# so that everything is shutdown prior to creating
# an AMI.
#
#
-
name
:
stop supervisor
service
:
name=supervisor state=stopped
-
name
:
stop supervisor.devpi
service
:
name=supervisor.devpi state=stopped
-
name
:
stop nginx
service
:
name=nginx state=stopped
-
name
:
stop rabbitmq-server
service
:
name=rabbitmq-server state=stopped
-
name
:
stop mysql
service
:
name=mysql state=stopped
-
name
:
stop memcached
service
:
name=memcached state=stopped
-
name
:
stop supervisor.devpi
service
:
name=supervisor.devpi state=stopped
-
name
:
stop nginx
service
:
name=nginx state=stopped
-
name
:
stop rabbitmq-server
service
:
name=rabbitmq-server state=stopped
-
name
:
stop mongodb
service
:
name=mongodb state=stopped
-
name
:
kill processes by user
shell
:
pkill -u {{ item }} ||
true
with_items
:
-
www-data
-
devpi.supervisor
-
rabbitmq
playbooks/roles/stop_all_edx_services/tasks/main.yml
0 → 100644
View file @
5e551d86
---
#
# edX Configuration
#
# github: https://github.com/edx/configuration
# wiki: https://github.com/edx/configuration/wiki
# code style: https://github.com/edx/configuration/wiki/Ansible-Coding-Conventions
# license: https://github.com/edx/configuration/blob/master/LICENSE.TXT
#
#
#
# Tasks for role stop_all_edx_services
#
# Overview:
#
# This stops all services on an edX server
# so that everything is shutdown prior to creating
# an AMI.
#
# Example play:
# roles:
# - stop_all_edx_services
#
#
-
name
:
stop supervisor
stat
:
path=/etc/init/supervisor.conf
register
:
stat_out
changed_when
:
stat_out.stat.exists
notify
:
stop supervisor
-
name
:
stop supervisor.devpi
stat
:
path=/etc/init/supervisor.devpi.conf
register
:
stat_out
changed_when
:
stat_out.stat.exists
notify
:
stop supervisor
-
name
:
stop nginx
stat
:
path=/etc/init.d/nginx
register
:
stat_out
changed_when
:
stat_out.stat.exists
notify
:
stop nginx
-
name
:
stop rabbitmq-server
stat
:
path=/etc/init.d/rabbitmq-server
register
:
stat_out
changed_when
:
stat_out.stat.exists
notify
:
stop rabbitmq-server
-
name
:
stop memcached
stat
:
path=/etc/init.d/memcached
register
:
stat_out
changed_when
:
stat_out.stat.exists
notify
:
stop memcached
-
name
:
stop mongodb
stat
:
path=/etc/init.d/mongodb
register
:
stat_out
changed_when
:
stat_out.stat.exists
notify
:
stop mongodb
-
shell
:
"
true"
notify
:
kill processes by user
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