Oatslite: Difference between revisions

From OLPC
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 9: Line 9:
== Installation ==
== Installation ==


The current version is targetted at Fedora 16 hosts.
The current version is targetted at Fedora 18 hosts.


Create /etc/yum.repos.d/inventario.repo with the following contents:
Create /etc/yum.repos.d/inventario.repo with the following contents:
Line 15: Line 15:
[inventario]
[inventario]
name=Inventario
name=Inventario
baseurl=http://dev.laptop.org/~dsd/inventario-repo/f16
baseurl=http://dev.laptop.org/~dsd/inventario-repo/$releasever
enabled=1
enabled=1
gpgcheck=0
gpgcheck=0
Line 45: Line 45:


To package:
To package:
# git archive --format=tar --prefix oatslite-1.0/ HEAD | bzip2 > ~/rpmbuild/SOURCES/oatslite-1.0.tar.bz2
# git archive --format=tar --prefix oatslite-2.0/ HEAD | bzip2 > ~/rpmbuild/SOURCES/oatslite-2.0.tar.bz2
# rpmbuild -ba oatslite.spec
# rpmbuild -ba oatslite.spec

Latest revision as of 22:39, 31 January 2013


oatslite is a server implementation of the Theft deterrence protocol.

For extensive information, please read the README.

Installation

The current version is targetted at Fedora 18 hosts.

Create /etc/yum.repos.d/inventario.repo with the following contents:

[inventario]
name=Inventario  
baseurl=http://dev.laptop.org/~dsd/inventario-repo/$releasever
enabled=1  
gpgcheck=0

Install the package:

# yum install oatslite

Read the README then configure oatslite to your needs:

# cat /usr/share/doc/oatslite-*/README
# cp /usr/share/doc/oatslite-*/oatslite-sample.cfg /etc/oatslite/oatslite.cfg
# nano /etc/oatslite/oatslite.cfg

Start the service and mark it to be started during boot:

# systemctl enable oatslite.service
# systemctl start oatslite.service

Building

Alternatively, it can be built from source. Tested by James Cameron on Fedora 17 builds in the OLPC OS 12.1.0 series.

Development

To package:

# git archive --format=tar --prefix oatslite-2.0/ HEAD | bzip2 > ~/rpmbuild/SOURCES/oatslite-2.0.tar.bz2
# rpmbuild -ba oatslite.spec