Skip to content

Commit

Permalink
Merge pull request #194 from rackerlabs/development
Browse files Browse the repository at this point in the history
Complete release 2.0.0
  • Loading branch information
tonyskapunk authored Jan 24, 2019
2 parents a7216ea + db98f04 commit 40afd25
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
23 changes: 12 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,21 @@ dnf install recap
yum install recap
```

### Debian / Ubuntu
### Debian

At the moment there is no public repository for Debian nor Ubuntu, two options are available:
Currently only available in [testing](https://packages.debian.org/source/testing/recap) and [unstable](https://packages.debian.org/source/unstable/recap). For other releases see the options to build a deb package or install from source.

#### Build a package
The official Debian files are available in this [repository](https://github.com/jkirk/recap)

This repository https://github.com/raxpkg/recap contains the Debian files required to build a deb package
### Ubuntu

These are the steps:
At the moment there is no public repository for Ubuntu, two options are available, build a deb package or install manually, see instructions down below.

### Build a deb package

This [repository](https://github.com/jkirk/recap) contains the official Debian files required to build a deb package.

These steps used to be used to build the deb package, use them as a guide:

```bash
# Install all the packages required for building the package
Expand All @@ -77,7 +83,7 @@ cd recap

# Get the Debian configs
git init
git remote add origin https://github.com/raxpkg/recap.git
git remote add origin https://github.com/jkirk/recap.git
git fetch --no-tags origin
git checkout -qf FETCH_HEAD
git submodule update --init --recursive
Expand All @@ -104,11 +110,6 @@ debuild -us -uc --lintian-opts --profile debian
# RELEASE comes from the changelog in the Debian repository.
```

#### Manual install

Use the [manual installation](#manual) method.


### Manual

1. Install the required dependencies.
Expand Down
2 changes: 1 addition & 1 deletion src/recap
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ recaplock() {
log ERROR "$( basename $0 )[$$]: Lock File exists - exiting"
exit 1
else
trap 'exit 2' 1 2 15 17 23
trap 'exit 2' 1 2 15 23
trap 'cleanup' EXIT
log INFO "$( basename $0 )[$$]: Created lock file: ${LOCKFILE}"
fi
Expand Down

0 comments on commit 40afd25

Please sign in to comment.