Skip to content

Commit

Permalink
Rename project to termius.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxbey authored and Maxim Beiner committed Nov 19, 2016
1 parent 6ec52ff commit 62eedcf
Show file tree
Hide file tree
Showing 102 changed files with 588 additions and 588 deletions.
2 changes: 1 addition & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[run]
branch = True
include = serverauditor_sshconfig/**.py
include = termius/**.py

[report]
precision = 2
Expand Down
8 changes: 4 additions & 4 deletions .prospector.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ ignore-paths:
- setup.py
- build
- tests
- serverauditor_sshconfig/core/ssh_config.py # it's too complex
- serverauditor_sshconfig/core/cryptor.py # it's too complex
- serverauditor_sshconfig/core/utils.py # it's too complex
- termius/core/ssh_config.py # it's too complex
- termius/core/cryptor.py # it's too complex
- termius/core/utils.py # it's too complex

ignore-patterns:
- (^|/)(?!serverauditor_sshconfig)?(/|$)
- (^|/)(?!termius)?(/|$)

pep257:
disable:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ RUN apt-get update \
git \
&& git clone https://github.com/sstephenson/bats.git && cd bats && ./install.sh /usr/local/ && cd -

ADD . /serverauditor
ADD . /termius

WORKDIR /serverauditor
WORKDIR /termius

CMD tox
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Serverauditor ssh config utility
# Termius CLI utility

[![Build status](https://travis-ci.org/Crystalnix/serverauditor-sshconfig.svg?branch=master)](https://travis-ci.org/Crystalnix/serverauditor-sshconfig)
[![Code Climate](https://codeclimate.com/github/Crystalnix/serverauditor-sshconfig/badges/gpa.svg)](https://codeclimate.com/github/Crystalnix/serverauditor-sshconfig)
Expand All @@ -10,50 +10,50 @@

## Installation

Serverauditor ssh config utility can be installed via [pip](http://www.pip-installer.org/en/latest/index.html):
Termius CLI utility can be installed via [pip](http://www.pip-installer.org/en/latest/index.html):

```bash
pip install -U serverauditor-sshconfig
pip install -U termius
```
or [easy_install](http://pythonhosted.org/distribute/):

```bash
easy_install -U serverauditor-sshconfig
easy_install -U termius
```


## Usage

Login to serverauditor.com
Login to termius.com

```bash
serverauditor login
termius login
```

Pull data from serverauditor.com
Pull data from termius.com

```bash
serverauditor pull
termius pull
```

Create host
```bash
serverauditor host --address localhost --label myhost
termius host --address localhost --label myhost
```

Connect to host
```
serverauditor connect myhost
termius connect myhost
```

Push data to serverauditor.com
Push data to termius.com
```bash
serverauditor push
termius push
```

Create hosts from ssh config
```bash
serverauditor sync ssh
termius sync ssh
```

## License
Expand Down
2 changes: 1 addition & 1 deletion bin/serverauditor
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env python
from serverauditor_sshconfig.main import main
from termius.main import main
main()
4 changes: 2 additions & 2 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ do_install() {
fi
easy_install -U $tar_url

if command_exists serverauditor; then
if command_exists termius; then
(
set -x
serverauditor --version
termius --version
) || true
fi
exit 0
Expand Down
Loading

0 comments on commit 62eedcf

Please sign in to comment.