Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kstep/ajenti-transmission
Transmission plugin for Ajenti
https://github.com/kstep/ajenti-transmission
Last synced: 15 days ago
JSON representation
Transmission plugin for Ajenti
- Host: GitHub
- URL: https://github.com/kstep/ajenti-transmission
- Owner: kstep
- Created: 2014-03-23T11:55:36.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-12-12T14:02:38.000Z (about 10 years ago)
- Last Synced: 2024-11-07T02:39:16.222Z (2 months ago)
- Language: Python
- Size: 360 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Transmission control plugin for Ajenti
This is an [Ajenti][] plugin to control [Transmission][] torrent client.
It also requires [models][] Ajenti plugin.Install **models** plugin into `/var/lib/ajenti/plugins` along with this plugin and restart **Ajenti**:
```
# mkdir -p /var/lib/ajenti/plugins/{models,transmission}
# git clone https://github.com/kstep/ajenti-models.git /var/lib/ajenti/plugins/models
# git clone https://github.com/kstep/ajenti-transmission.git /var/lib/ajenti/plugins/transmission
# service restart ajenti
```You will also need to compile `content/js/dom.coffee` file with [CoffeeScript][] compiler:
```
# cd /var/lib/ajenti/plugins/transmission/content/js
# coffee -c dom.coffee && mv dom.js dom.coffee.js && cp dom.coffee.js dom.coffee.c.js
```Now login to your Ajenti panel and go to new **Transmission** menu item in **Software** section. You may need to configure it.
[Ajenti]: http://ajenti.org/
[Transmission]: http://www.transmissionbt.com/
[models]: http://github.com/kstep/ajenti-models
[CoffeeScript]: http://coffeescript.org/