8 lines
311 B
Bash
8 lines
311 B
Bash
#!/usr/local/bin/bash
|
|
# This file contains the update script for transmission
|
|
|
|
iocage exec "$1" service transmission stop
|
|
|
|
# Transmision is updated during PKG update, this file is mostly just a placeholder
|
|
iocage exec "$1" chown -R transmission:transmission /config
|
|
iocage exec "$1" service transmission restart |