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
0b4b3da0
Commit
0b4b3da0
authored
Jul 28, 2017
by
Brian Beggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixup sqlite role
parent
c08ccd9f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
3 deletions
+21
-3
playbooks/roles/fix_devstack_sqlite/tasks/main.yml
+21
-3
No files found.
playbooks/roles/fix_devstack_sqlite/tasks/main.yml
View file @
0b4b3da0
---
-
name
:
Creates directory
file
:
path
:
"
{{
SQLITE_FIX_TMP_DIR
}}"
state
:
directory
mode
:
0775
when
:
devstack is defined and devstack
tags
:
-
devstack
-
devstack:install
# 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
when
:
devstack is defined and devstack
tags
:
-
devstack
-
devstack:install
...
...
@@ -15,22 +27,26 @@
src
:
"
{{
PYSQLITE_URL
}}"
dest
:
"
{{
SQLITE_FIX_TMP_DIR
}}"
remote_src
:
yes
when
:
devstack is defined and devstack
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
}}"
command
:
"
cp
-av
.
{{
PYSQLITE_TMP_PATH
}}/"
args
:
chdir
:
"
{{
SQLITE_TMP_PATH
}}"
when
:
devstack is defined and devstack
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
}}"
when
:
devstack is defined and devstack
tags
:
-
devstack
-
devstack:install
...
...
@@ -39,5 +55,7 @@
file
:
state
:
absent
path
:
"
{{
SQLITE_FIX_TMP_DIR
}}/"
tag - devstack
when
:
devstack is defined and devstack
tags
:
-
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