mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 03:32:12 +00:00
commit
08bb154f4a
3 changed files with 27 additions and 6 deletions
24
README.md
24
README.md
|
@ -1,2 +1,22 @@
|
|||
# iiab
|
||||
Internet in a Box - NEW VERSION orig from http://github.com/iiab
|
||||
# Internet-in-a-Box (IIAB)
|
||||
|
||||
Welcome to the Git repository of the Internet-in-a-Box (IIAB) project. This is a community-based project developed and supported by volunteers from around the world. The Internet-in-a-Box (IIAB) is small, inexpensive device which provides essential Internet resources (like Wikipedia, OpenStreetMap, Khan Academy and others) without any Internet connection. It provides a local content server of the world’s Free Knowledge.
|
||||
|
||||
The older version of this repository is at [github.com/xsce](http://github.com/xsce). We are using [Ansible](https://www.ansible.com) as the underlying technology to install, deploy, configure and manage the various software components.
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
Please read the [Installation](https://github.com/iiab/iiab/wiki/IIAB-Installation) wiki page for details about installation of Internet-in-a-Box (IIAB).
|
||||
|
||||
## Built With
|
||||
|
||||
* [Ansible](http://www.ansible.com)
|
||||
|
||||
## Contributing
|
||||
|
||||
Please read our [Contributors Guide](https://github.com/iiab/iiab/wiki/IIAB-Contributors-Guide) to learn more about contributing to Internet-in-a-Box (IIAB) repository.
|
||||
|
||||
## Versioning
|
||||
|
||||
You can track the latest Internet-in-a-Box (IIAB) [releases here](https://github.com/iiab/iiab/releases).
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
/opt/schoolserver/xsce/roles/xsce-admin/templates/console/xs-console.conf.j2
|
|
@ -8,22 +8,24 @@
|
|||
|
||||
- name: Grab the requirements file
|
||||
get_url: url={{ kalite_requirements }} dest={{ pip_packages_dir }}/kalite.txt
|
||||
when: internet_available
|
||||
when: internet_available
|
||||
|
||||
- name: Install ka-lite dependencies with pip
|
||||
pip: requirements={{ pip_packages_dir }}/kalite.txt
|
||||
virtualenv={{ kalite_venv }}
|
||||
virtualenv_site_packages=no
|
||||
extra_args="--no-cache-dir"
|
||||
# extra_args="--disable-pip-version-check"
|
||||
when: internet_available
|
||||
when: internet_available
|
||||
|
||||
- name: Install ka-lite with pip
|
||||
pip: name=ka-lite-static
|
||||
version={{ kalite_version }}
|
||||
virtualenv={{ kalite_venv }}
|
||||
virtualenv_site_packages=no
|
||||
extra_args="--no-cache-dir"
|
||||
# extra_args="--disable-pip-version-check"
|
||||
when: internet_available
|
||||
when: internet_available
|
||||
|
||||
- name: Default is to have cronserve started with kalite
|
||||
set_fact:
|
||||
|
|
Loading…
Reference in a new issue