[transimission-cli,samba] init scripts for oxnas

Problems with packages? Post here, using [tags] of the package name.

[transimission-cli,samba] init scripts for oxnas

Postby kerosin » Sun Sep 08, 2013 11:15 am

Hello,

I've just installed alarm on PogoplugPro (oxnas) using moonman's 2013.06 rootfs ( viewtopic.php?f=55&t=5733 )

But now I would like to run transmission and samba so I'm looking for its init scripts.

Does somebody still has a copy of those pre-systemd scripts or could help me to find it?


Thank you very much

M
kerosin
 
Posts: 4
Joined: Sun Sep 08, 2013 11:04 am

Re: [transimission-cli,samba] init scripts for oxnas

Postby karog » Sun Sep 08, 2013 1:59 pm

Transmissiion:

In /etc/conf.d/transmissiond
$this->bbcode_second_pass_code('', '
# example configuration file

# TRANS_USER="transmission"
')
In /etc/rc.d/transmissiond
$this->bbcode_second_pass_code('', '
#!/bin/bash

. /etc/rc.conf
. /etc/rc.d/functions
. /etc/conf.d/transmissiond

PID=`pidof -o %PPID /usr/bin/transmission-daemon`
case "$1" in
start)
stat_busy "Starting Transmission Daemon"
[ -z "$PID" ] && su -l -s /bin/sh -c "/usr/bin/transmission-daemon $TRANS_ARGS" "${TRANS_USER:-transmission}"
if [ $? -gt 0 ]; then
stat_fail
else
add_daemon transmissiond
stat_done
fi
;;
stop)
stat_busy "Stopping Transmission Daemon"
[ ! -z "$PID" ] && kill $PID &> /dev/null
if [ $? -gt 0 ]; then
stat_fail
else
rm_daemon transmissiond
stat_done
fi
;;
restart)
$0 stop
while [ ! -z "$PID" -a -d "/proc/$PID" ]; do sleep 1; done
$0 start
;;
reload)
stat_busy "Reloading config"
[ ! -z "$PID" ] && kill -HUP $PID &> /dev/null
if [ $? -gt 0 ]; then
stat_fail
else
stat_done
fi
;;
*)
echo "usage: $0 {start|stop|restart|reload}"
esac
exit 0
')

Samba:

In /etc/conf.d/samba
$this->bbcode_second_pass_code('', '
## Path: Network/Samba
## Description: Samba process options
## Type: string
## Default: ""
## ServiceRestart: samba
SAMBAOPTIONS=""
## Type: string
## Default: ""
## ServiceRestart: smb
SMBDOPTIONS=""
## Type: string
## Default: ""
## ServiceRestart: nmb
NMBDOPTIONS=""
## Type: string
## Default: ""
## ServiceRestart: winbind
WINBINDOPTIONS=""
')
In /etc/rc.d/samba
$this->bbcode_second_pass_code('', '
#!/bin/bash

. /etc/rc.conf
. /etc/rc.d/functions
[ -f /etc/conf.d/samba ] && . /etc/conf.d/samba

[ -z "$SAMBA_DAEMONS" ] && SAMBA_DAEMONS=(smbd nmbd)

case "$1" in
start)
rc=0
stat_busy "Starting Samba Server"
if [ ! -x /var/log/samba ] ; then
install -m755 -d /var/log/samba
fi
for d in ${SAMBA_DAEMONS[@]}; do
PID=`pidof -o %PPID /usr/bin/$d`
[ -z "$PID" ] && /usr/bin/$d -D
rc=$(($rc+$?))
done
if [ $rc -gt 0 ]; then
stat_fail
else
add_daemon samba
stat_done
fi
;;
stop)
rc=0
stat_busy "Stopping Samba Server"
for d in ${SAMBA_DAEMONS[@]}; do
PID=`pidof -o %PPID /usr/bin/$d`
[ -z "$PID" ] || kill $PID &> /dev/null
rc=$(($rc+$?))
done
if [ $rc -gt 0 ]; then
stat_fail
else
rm /run/samba/smbd.pid &>/dev/null
rm /run/samba/nmbd.pid &>/dev/null
rm /run/samba/winbindd.pid &>/dev/null
rm_daemon samba
stat_done
fi
;;
restart)
$0 stop
sleep 1
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
esac
exit 0
')
karog
 
Posts: 305
Joined: Thu Jan 05, 2012 7:55 pm

Re: [transimission-cli,samba] init scripts for oxnas

Postby kerosin » Sun Sep 08, 2013 2:15 pm

kerog thank you so much. Where did you get those scripts if I can ask.

Thanks
kerosin
 
Posts: 4
Joined: Sun Sep 08, 2013 11:04 am

Re: [transimission-cli,samba] init scripts for oxnas

Postby karog » Mon Sep 09, 2013 2:05 pm

$this->bbcode_second_pass_quote('kerosin', 'k')erog thank you so much. Where did you get those scripts if I can ask.

Thanks

On my own oxnas machine. I run both samba and transmission on it and have been doing so for quite awhile.
karog
 
Posts: 305
Joined: Thu Jan 05, 2012 7:55 pm


Return to Packages

Who is online

Users browsing this forum: No registered users and 9 guests