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
c08ccd9f
Commit
c08ccd9f
authored
Jul 28, 2017
by
bmedx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for devstack sqlite segfaults PLAT-1637
parent
15bbf26b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
0 deletions
+54
-0
playbooks/roles/fix_devstack_sqlite/defaults/main.yml
+11
-0
playbooks/roles/fix_devstack_sqlite/tasks/main.yml
+43
-0
No files found.
playbooks/roles/fix_devstack_sqlite/defaults/main.yml
0 → 100644
View file @
c08ccd9f
---
SQLITE_FIX_TMP_DIR
:
"
/var/tmp/sqlite_fix"
PYSQLITE_URL
:
"
https://codeload.github.com/ghaering/pysqlite/tar.gz/2.8.3"
PYSQLITE_CREATED_PATH
:
"
pysqlite-2.8.3"
PYSQLITE_TMP_PATH
:
"
{{
SQLITE_FIX_TMP_DIR
}}/{{
PYSQLITE_CREATED_PATH
}}"
SQLITE_AUTOCONF_URL
:
"
https://www.sqlite.org/2016/sqlite-autoconf-3140100.tar.gz"
SQLITE_AUTOCONF_CREATED_PATH
:
"
sqlite-autoconf-3140100"
SQLITE_TMP_PATH
:
"
{{
SQLITE_FIX_TMP_DIR
}}/{{
SQLITE_AUTOCONF_CREATED_PATH
}}"
playbooks/roles/fix_devstack_sqlite/tasks/main.yml
0 → 100644
View file @
c08ccd9f
---
# Tasks to download and upgrade pysqlite to prevent segfaults when testing in devstack
-
name
:
Download and unzip sqlite autoconf update
unarchive
:
src
:
"
{{
SQLITE_AUTOCONF_URL
}}"
dest
:
"
{{
SQLITE_FIX_TMP_DIR
}}"
remote_src
:
yes
tags
:
-
devstack
-
devstack:install
-
name
:
Download and unzip pysqlite update
unarchive
:
src
:
"
{{
PYSQLITE_URL
}}"
dest
:
"
{{
SQLITE_FIX_TMP_DIR
}}"
remote_src
:
yes
tags
:
-
devstack
-
devstack:install
# Copy module doesn't support recursive dir copies for remote_src: yes
-
name
:
Copy pysqlite autoconf into pyslite update dir
command
:
"
cp
-R
{{
SQLITE_TMP_PATH
}}
{{
PYSQLITE_TMP_PATH
}}"
tags
:
-
devstack
-
devstack:install
-
name
:
Build and install pysqlite update
command
:
"
python
setup.py
build_static
install"
become_user
:
"
{{
edxapp_user
}}"
args
:
chdir
:
"
{{
PYSQLITE_TMP_PATH
}}"
tags
:
-
devstack
-
devstack:install
-
name
:
Clean up pysqlite install artifacts
file
:
state
:
absent
path
:
"
{{
SQLITE_FIX_TMP_DIR
}}/"
tag - devstack
- devstack:install
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