-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from nasa/grc-atf-dev
pull misc grc-atf-dev updates into grc-atf
- Loading branch information
Showing
7 changed files
with
38 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,11 +16,10 @@ blender_footer_wikis: [] | |
|
||
# Below all the wikis, links to stuff | ||
blender_footer_links: | ||
- "<a href='https://github.com/enterprisemediawiki/meza'>meza on github</a>" | ||
- "<a href='https://enterprisemediawiki.org'>enterprisemediawiki.org</a>" | ||
- "<a href='https://github.com/nasa/meza'>meza on github</a>" | ||
- "<a href='https://mwstake.org'>mwstake.org</a>" | ||
|
||
blender_admins: [] | ||
# - { email: [email protected], name: "James Montalvo" } | ||
# - email: [email protected] | ||
# name: Sally Example | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,11 +16,10 @@ blender_footer_wikis: [] | |
|
||
# Below all the wikis, links to stuff | ||
blender_footer_links: | ||
- "<a href='https://github.com/enterprisemediawiki/meza'>meza on github</a>" | ||
- "<a href='https://enterprisemediawiki.org'>enterprisemediawiki.org</a>" | ||
- "<a href='https://github.com/nasa/meza'>meza on github/nasa</a>" | ||
- "<a href='https://mwstake.org'>mwstake.org</a>" | ||
|
||
blender_admins: [] | ||
# - { email: [email protected], name: "James Montalvo" } | ||
# - email: [email protected] | ||
# name: Sally Example | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,24 @@ | ||
--- | ||
|
||
|
||
# Import pages required for SemanticMeetingMinutes and rebuild recent changes | ||
# - name: import pages for SemanticMeetingMinutes | ||
# shell: > | ||
# WIKI="{{ wiki_id }}" php "{{ m_mediawiki }}/maintenance/importDump.php" --report --debug < {{ m_mediawiki }}/extensions/SemanticMeetingMinutes/ImportFiles/import.xml | ||
# run_once: true | ||
- name: Import all pages registered with PageImporter (e.g. SemanticMeetingMinutes) | ||
shell: > | ||
WIKI="{{ wiki_id }}" php "{{ m_mediawiki }}/extensions/PageImporter/importPages.php" | ||
run_once: True | ||
#- name: Import all pages registered with PageImporter (e.g. SemanticMeetingMinutes) | ||
# shell: > | ||
# WIKI="{{ wiki_id }}" php "{{ m_mediawiki }}/extensions/PageImporter/importPages.php" | ||
# run_once: True | ||
|
||
- name: rebuildrecentchanges.php | ||
shell: > | ||
WIKI="{{ wiki_id }}" php "{{ m_mediawiki }}/maintenance/rebuildrecentchanges.php" | ||
run_once: true | ||
|
||
# Create an admin user for Demo Wiki only if the wiki was just created | ||
- name: Create "Admin" user on Demo Wiki | ||
- name: Create Admin user on Demo Wiki | ||
shell: > | ||
WIKI="{{ wiki_id }}" php "{{ m_mediawiki }}/maintenance/createAndPromote.php" --force --sysop --bureaucrat Admin adminpass12 | ||
WIKI="{{ wiki_id }}" php "{{ m_mediawiki }}/maintenance/createAndPromote.php" --force --sysop --bureaucrat Admin adminpass! | ||
run_once: true | ||
when: wiki_id == "demo" | ||
|