diff --git a/debian/ngcp-rtpengine-daemon.manpages b/debian/ngcp-rtpengine-daemon.manpages index 702e181c3..1e943841b 100644 --- a/debian/ngcp-rtpengine-daemon.manpages +++ b/debian/ngcp-rtpengine-daemon.manpages @@ -1 +1,2 @@ daemon/rtpengine.8 +debian/ngcp-rtpengine-iptables-setup.1 diff --git a/debian/ngcp-rtpengine-iptables-setup.1 b/debian/ngcp-rtpengine-iptables-setup.1 new file mode 100644 index 000000000..e804bf3e0 --- /dev/null +++ b/debian/ngcp-rtpengine-iptables-setup.1 @@ -0,0 +1,16 @@ +.TH man 1 "17 May 2022" "1.0" "ngcp-rtpengine-iptables-setup man page" +.SH NAME +ngcp\-rtpengine\-iptables\-setup \- manages iptables rules for ngcp\-rtpengine\-daemon service +.SH SYNOPSIS +ngcp\-rtpengine\-iptables\-setup [start|stop] +.SH DESCRIPTION +ngcp\-rtpengine\-iptables\-setup will enable or disable the iptables rules needed by rtpengine to properly work. +This program will be called by ngcp\-rtpengine\-daemon service. +.SH OPTIONS +ngcp\-rtpengine\-iptables\-setup has no options. +.SH SEE ALSO +rtpengine(8) +.SH BUGS +No known bugs. +.SH AUTHOR +Victor Seva (vseva@sipwise.com) diff --git a/debian/ngcp-rtpengine-recording-daemon.manpages b/debian/ngcp-rtpengine-recording-daemon.manpages index 96515be0c..9e99650fb 100644 --- a/debian/ngcp-rtpengine-recording-daemon.manpages +++ b/debian/ngcp-rtpengine-recording-daemon.manpages @@ -1 +1,2 @@ +debian/ngcp-rtpengine-recording-nfs-setup.1 recording-daemon/rtpengine-recording.8 diff --git a/debian/ngcp-rtpengine-recording-nfs-setup.1 b/debian/ngcp-rtpengine-recording-nfs-setup.1 new file mode 100644 index 000000000..dab87d675 --- /dev/null +++ b/debian/ngcp-rtpengine-recording-nfs-setup.1 @@ -0,0 +1,16 @@ +.TH man 1 "17 May 2022" "1.0" "ngcp-rtpengine-recording-nfs-setup man page" +.SH NAME +ngcp\-rtpengine\-recording\-nfs\-setup \- manages NFS mount for ngcp\-rtpengine\-recording\-daemon service +.SH SYNOPSIS +ngcp\-rtpengine\-recording\-nfs\-setup [start|stop] +.SH DESCRIPTION +ngcp\-rtpengine\-recording\-nfs\-setup will mount or unmount the NFS resource needed by ngcp\-rtpengine\-recording\-daemon to properly work. +This program will be called by ngcp\-rtpengine\-recording\-daemon service. +.SH OPTIONS +ngcp\-rtpengine\-recording\-nfs\-setup has no options. +.SH SEE ALSO +rtpengine\-recording(8) +.SH BUGS +No known bugs. +.SH AUTHOR +Victor Seva (vseva@sipwise.com) diff --git a/debian/ngcp-rtpengine-utils.manpages b/debian/ngcp-rtpengine-utils.manpages new file mode 100644 index 000000000..7427dc1af --- /dev/null +++ b/debian/ngcp-rtpengine-utils.manpages @@ -0,0 +1,2 @@ +utils/rtpengine-ctl.1 +utils/rtpengine-ng-client.1 diff --git a/pkg/deb/generator.sh b/pkg/deb/generator.sh index c5a4f9553..7d5826931 100755 --- a/pkg/deb/generator.sh +++ b/pkg/deb/generator.sh @@ -15,7 +15,9 @@ cp -ra backports debian # rules echo "- Remove ngcp- prefix" -find debian -maxdepth 1 -type f -exec sed -i -e 's/ngcp-rtpengine/rtpengine/g' {} \; +find debian -maxdepth 1 -type f -exec \ + sed -i -e 's/ngcp-rtpengine/rtpengine/g' \ + -e 's/ngcp\\-rtpengine/rtpengine/g' {} \; ## remove same file on links while read -r file; do diff --git a/utils/rtpengine-ctl.1 b/utils/rtpengine-ctl.1 new file mode 100644 index 000000000..c0bb188c0 --- /dev/null +++ b/utils/rtpengine-ctl.1 @@ -0,0 +1,22 @@ +.TH man 1 "17 May 2022" "1.0" "rtpengine-ctl man page" +.SH NAME +rtpengine\-ctl \- utility for sending commands to ngcp\-rtpengine\-daemon service +.SH SYNOPSIS +rtpengine\-ctl [ -h -config-file -ip [:] -port ] +.SH DESCRIPTION +rtpengine\-ctl will send commands to the specified ngcp\-rtpengine\-daemon +.SH OPTIONS +.IP -h -help +Will print a full list of supported commands. +.IP -config-file +Path to rtpengine.conf file. It will use ip:port defined there to connect to the ngcp\-rtpengine\-daemon service. +.IP -ip +ipaddress or ipaddress:port to use to connect to the ngcp\-rtpengine\-daemon. Defaults to 127.0.0.1 +.IP -port +port to use to connect to the ngcp\-rtpengine\-daemon. Defaults to 9900 +.SH SEE ALSO +rtpengine(8) +.SH BUGS +No known bugs. +.SH AUTHOR +Victor Seva (vseva@sipwise.com) diff --git a/utils/rtpengine-ng-client.1 b/utils/rtpengine-ng-client.1 new file mode 100644 index 000000000..a15ac5f91 --- /dev/null +++ b/utils/rtpengine-ng-client.1 @@ -0,0 +1,16 @@ +.TH man 1 "17 May 2022" "1.0" "rtpengine-ng-client man page" +.SH NAME +rtpengine\-ng\-client \- utility for sending client commands to ngcp\-rtpengine\-daemon service +.SH SYNOPSIS +rtpengine\-ng\-client +.SH DESCRIPTION +rtpengine\-ng\-client will send NG commands to the specified ngcp\-rtpengine\-daemon service. +This util is mainly used to simulate a client in a development environment. +.SH OPTIONS +See the full list of NG parameters at README. +.SH SEE ALSO +rtpengine(8) +.SH BUGS +No known bugs. +.SH AUTHOR +Victor Seva (vseva@sipwise.com)