Skip to content

Commit

Permalink
Revert "Merge pull request openedx-unsupported#2772 from edx/ned/merg…
Browse files Browse the repository at this point in the history
…e-dogwood-to-master"

This reverts commit adae6cf, reversing
changes made to 43e2f6f.
  • Loading branch information
smarnach authored and Omar Khan committed Mar 2, 2016
1 parent 76a574b commit c797d06
Show file tree
Hide file tree
Showing 9 changed files with 100 additions and 68 deletions.
23 changes: 23 additions & 0 deletions playbooks/roles/certs/handlers/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
#
# 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 certs
#
# Overview:
#

- name: restart certs
supervisorctl: >
name=certs
supervisorctl_path={{ supervisor_ctl }}
config={{ supervisor_cfg }}
state=restarted
when: certs_installed is defined and not disable_edx_services
17 changes: 10 additions & 7 deletions playbooks/roles/certs/tasks/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@
src=certs.env.json.j2
dest={{ certs_app_dir }}/env.json
sudo_user: "{{ certs_user }}"
notify: restart certs

- name: create certificate auth file
template: >
src=certs.auth.json.j2
dest={{ certs_app_dir }}/auth.json
sudo_user: "{{ certs_user }}"
notify: restart certs

- name: writing supervisor script for certificates
template: >
Expand All @@ -25,12 +27,14 @@
state=link
force=yes
mode=0644
notify: restart certs
when: not disable_edx_services

- name: create ssh script for git
template: >
src={{ certs_git_ssh|basename }}.j2 dest={{ certs_git_ssh }}
owner={{ certs_user }} mode=750
notify: restart certs

# This key is only needed if you are pulling down a private
# certificates repo
Expand All @@ -39,6 +43,7 @@
content="{{ CERTS_GIT_IDENTITY }}" dest={{ certs_git_identity }}
force=yes owner={{ certs_user }} mode=0600
when: CERTS_GIT_IDENTITY != "none"
notify: restart certs

- name: checkout certificates repo into {{ certs_code_dir }}
git: >
Expand All @@ -49,6 +54,7 @@
GIT_SSH: "{{ certs_git_ssh }}"
register: certs_checkout
when: CERTS_GIT_IDENTITY != "none"
notify: restart certs

- name: checkout certificates repo into {{ certs_code_dir }}
git: >
Expand All @@ -57,16 +63,19 @@
sudo_user: "{{ certs_user }}"
register: certs_checkout
when: CERTS_GIT_IDENTITY == "none"
notify: restart certs

- name: remove read-only ssh key for the certs repo
file: path={{ certs_git_identity }} state=absent
when: CERTS_GIT_IDENTITY != "none"
notify: restart certs

- name : install python requirements
pip: >
requirements="{{ certs_requirements_file }}" virtualenv="{{ certs_venv_dir }}" state=present
extra_args="-i {{ COMMON_PYPI_MIRROR_URL }}"
sudo_user: "{{ certs_user }}"
notify: restart certs

# call supervisorctl update. this reloads
# the supervisorctl config and restarts
Expand Down Expand Up @@ -101,10 +110,4 @@
- include: tag_ec2.yml tags=deploy
when: COMMON_TAG_EC2_INSTANCE

- name: restart certs
supervisorctl: >
name=certs
supervisorctl_path={{ supervisor_ctl }}
config={{ supervisor_cfg }}
state=restarted
when: not disable_edx_services
- set_fact: certs_installed=true
7 changes: 7 additions & 0 deletions playbooks/roles/certs/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,15 @@
home="{{ certs_app_dir }}"
createhome=no
shell=/bin/false
notify: restart certs

- name: create certs app dirs
file: >
path="{{ item }}"
state=directory
owner="{{ certs_user }}"
group="{{ common_web_group }}"
notify: restart certs
with_items:
- "{{ certs_app_dir }}"
# needed for the ansible 1.5 git module
Expand All @@ -66,30 +68,35 @@
path="{{ certs_gpg_dir }}" state=directory
owner="{{ common_web_user }}"
mode=0700
notify: restart certs

- name: copy the private gpg signing key
copy: >
src={{ CERTS_LOCAL_PRIVATE_KEY }}
dest={{ certs_app_dir }}/{{ CERTS_LOCAL_PRIVATE_KEY|basename }}
owner={{ common_web_user }} mode=0600
notify: restart certs
register: certs_gpg_key

- name: copy the pgp trust export
copy: >
content="{{ CERTS_OWNER_TRUST }}"
dest={{ certs_app_dir }}/trust.export
owner={{ common_web_user }} mode=0600
notify: restart certs

- name: load the gpg key
shell: >
/usr/bin/gpg --homedir {{ certs_gpg_dir }} --import {{ certs_app_dir }}/{{ CERTS_LOCAL_PRIVATE_KEY|basename }}
sudo_user: "{{ common_web_user }}"
when: certs_gpg_key.changed
notify: restart certs

- name: import the trust export
shell: >
/usr/bin/gpg --homedir {{ certs_gpg_dir }} --import-ownertrust {{ certs_app_dir }}/trust.export
sudo_user: "{{ common_web_user }}"
when: certs_gpg_key.changed
notify: restart certs

- include: deploy.yml tags=deploy
10 changes: 10 additions & 0 deletions playbooks/roles/xqueue/handlers/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
- name: restart xqueue
supervisorctl: >
name={{ item }}
supervisorctl_path={{ supervisor_ctl }}
config={{ supervisor_cfg }}
state=restarted
when: xqueue_installed is defined and not disable_edx_services
with_items:
- xqueue
- xqueue_consumer
27 changes: 17 additions & 10 deletions playbooks/roles/xqueue/tasks/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,26 @@
template: >
src=xqueue_gunicorn.py.j2 dest={{ xqueue_app_dir }}/xqueue_gunicorn.py
sudo_user: "{{ xqueue_user }}"
notify:
- restart xqueue
tags:
- install
- install:configuration

- name: create xqueue application config
template: src=xqueue.env.json.j2 dest={{ xqueue_app_dir }}/xqueue.env.json mode=0644
sudo_user: "{{ xqueue_user }}"
notify:
- restart xqueue
tags:
- install
- install:configuration

- name: create xqueue auth file
template: src=xqueue.auth.json.j2 dest={{ xqueue_app_dir }}/xqueue.auth.json mode=0644
sudo_user: "{{ xqueue_user }}"
notify:
- restart xqueue
tags:
- install
- install:configuration
Expand All @@ -48,6 +54,8 @@
accept_hostkey=yes
sudo_user: "{{ xqueue_user }}"
register: xqueue_checkout
notify:
- restart xqueue
tags:
- install
- install:code
Expand All @@ -59,6 +67,8 @@
requirements="{{ xqueue_pre_requirements_file }}" virtualenv="{{ xqueue_venv_dir }}" state=present
extra_args="-i {{ COMMON_PYPI_MIRROR_URL }} --exists-action w"
sudo_user: "{{ xqueue_user }}"
notify:
- restart xqueue
tags:
- install
- install:app-requirements
Expand All @@ -69,6 +79,8 @@
requirements="{{ xqueue_post_requirements_file }}" virtualenv="{{ xqueue_venv_dir }}" state=present
extra_args="-i {{ COMMON_PYPI_MIRROR_URL }} --exists-action w"
sudo_user: "{{ xqueue_user }}"
notify:
- restart xqueue
tags:
- install
- install:app-requirements
Expand All @@ -83,6 +95,8 @@
DB_MIGRATION_USER: "{{ COMMON_MYSQL_MIGRATE_USER }}"
DB_MIGRATION_PASS: "{{ COMMON_MYSQL_MIGRATE_PASS }}"
when: migrate_db is defined and migrate_db|lower == "yes" and COMMON_MYSQL_MIGRATE_PASS
notify:
- restart xqueue
tags:
- migrate
- migrate:db
Expand All @@ -91,6 +105,8 @@
shell: >
SERVICE_VARIANT=xqueue {{ xqueue_venv_bin }}/django-admin.py update_users --settings=xqueue.aws_settings --pythonpath={{ xqueue_code_dir }}
sudo_user: "{{ xqueue_user }}"
notify:
- restart xqueue
tags:
- manage
- manage:app-users
Expand Down Expand Up @@ -132,13 +148,4 @@
- install
- install:app-requirements

- name: restart xqueue
supervisorctl: >
name={{ item }}
supervisorctl_path={{ supervisor_ctl }}
config={{ supervisor_cfg }}
state=restarted
when: not disable_edx_services
with_items:
- xqueue
- xqueue_consumer
- set_fact: xqueue_installed=true
6 changes: 6 additions & 0 deletions playbooks/roles/xqueue/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
home="{{ xqueue_app_dir }}"
createhome=no
shell=/bin/false
notify:
- restart xqueue
tags:
- install
- install:base
Expand All @@ -22,6 +24,8 @@
state=directory
owner="{{ xqueue_user }}"
group="{{ common_web_group }}"
notify:
- restart xqueue
with_items:
- "{{ xqueue_app_dir }}"
- "{{ xqueue_venvs_dir }}"
Expand All @@ -31,6 +35,8 @@

- name: install a bunch of system packages on which xqueue relies
apt: pkg={{','.join(xqueue_debian_pkgs)}} state=present
notify:
- restart xqueue
tags:
- install
- install:system-requirements
Expand Down
52 changes: 12 additions & 40 deletions util/vagrant/migrate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,14 @@ confirm_proceed () {
}

# Check we are in the right place, and have the info we need.

if [[ "`whoami`" != "vagrant" ]]; then
echo "Run this from the vagrant account in your Open edX machine."
exit 1
fi

if [[ ! -d /edx/app/edxapp ]]; then
echo "Run this on your Open edX machine."
echo "Run this from the vagrant account in your Open edX machine."
exit 1
fi

Expand All @@ -84,11 +90,6 @@ if [[ $CONFIGURATION == none ]]; then
exit 1
fi

APPUSER=edxapp
if [[ $CONFIGURATION == fullstack ]] ; then
APPUSER=www-data
fi

# Birch details

if [[ $TARGET == *birch* && $INTERACTIVE == true ]] ; then
Expand Down Expand Up @@ -172,22 +173,6 @@ make_config_venv
# Dogwood details

if [[ $TARGET == *dogwood* ]] ; then
# Run the forum migrations.
cat > migrate-008-context.js <<"EOF"
// from: https://github.com/edx/cs_comments_service/blob/master/scripts/db/migrate-008-context.js
print ("Add the new indexes for the context field");
db.contents.ensureIndex({ _type: 1, course_id: 1, context: 1, pinned: -1, created_at: -1 }, {background: true})
db.contents.ensureIndex({ _type: 1, commentable_id: 1, context: 1, pinned: -1, created_at: -1 }, {background: true})
print ("Adding context to all comment threads where it does not yet exist\n");
var bulk = db.contents.initializeUnorderedBulkOp();
bulk.find( {_type: "CommentThread", context: {$exists: false}} ).update( {$set: {context: "course"}} );
bulk.execute();
printjson (db.runCommand({ getLastError: 1, w: "majority", wtimeout: 5000 } ));
EOF

mongo cs_comments_service migrate-008-context.js

# We are upgrading Python from 2.7.3 to 2.7.10, so remake the venvs.
sudo rm -rf /edx/app/*/v*envs/*

Expand All @@ -209,7 +194,7 @@ EOF
make_config_venv

# Need to get rid of South from edx-platform, or things won't work.
sudo -u edxapp /edx/bin/pip.edxapp uninstall -y South
sudo -u edxapp /edx/app/edxapp/venvs/edxapp/bin/pip uninstall -y South

echo "Upgrading to the beginning of Django 1.8"
cd configuration/playbooks/vagrant
Expand All @@ -226,8 +211,10 @@ EOF

echo "Running the Django 1.8 faked migrations"
for item in lms cms; do
sudo -u $APPUSER -E /edx/bin/python.edxapp \
/edx/bin/manage.edxapp $item migrate --settings=aws --noinput --fake-initial
sudo -u edxapp \
/edx/app/edxapp/venvs/edxapp/bin/python \
/edx/app/edxapp/edx-platform/manage.py $item migrate \
--settings=aws --noinput --fake-initial
done

if [[ $CONFIGURATION == fullstack ]] ; then
Expand All @@ -239,7 +226,6 @@ EOF
fi
fi

echo "Updating to final version of code"
cd configuration/playbooks
echo "edx_platform_version: $TARGET" > vars.yml
echo "ora2_version: $TARGET" >> vars.yml
Expand All @@ -252,20 +238,6 @@ sudo ansible-playbook \
--extra-vars="@vars.yml" \
$SERVER_VARS \
vagrant-$CONFIGURATION.yml
cd ../..

if [[ $TARGET == *dogwood* ]] ; then
echo "Running data fixup management commands"
sudo -u $APPUSER -E /edx/bin/python.edxapp \
/edx/bin/manage.edxapp lms --settings=aws generate_course_overview --all

sudo -u $APPUSER -E /edx/bin/python.edxapp \
/edx/bin/manage.edxapp lms --settings=aws post_cohort_membership_fix --commit

# Run the forums migrations again to catch things made while this script
# was running.
mongo cs_comments_service migrate-008-context.js
fi

cd /
sudo rm -rf $TEMPDIR
Expand Down
Loading

0 comments on commit c797d06

Please sign in to comment.