This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| freenas2# jls | |
| JID IP Address Hostname Path | |
| ... | |
| 5 - etherpad /mnt/basin/jails/etherpad | |
| ... | |
| freenas2# ./mdns.sh 5 | |
| Updating FreeBSD repository catalogue... | |
| [etherpad] Fetching meta.txz: 100% 944 B 0.9kB/s 00:01 | |
| [etherpad] Fetching packagesite.txz: 100% 6 MiB 5.9MB/s 00:01 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function dxDrawCircle( posX, posY, radius, width, angleAmount, startAngle, stopAngle, color, postGUI ) | |
| if ( type( posX ) ~= "number" ) or ( type( posY ) ~= "number" ) then | |
| return false | |
| end | |
| local function clamp( val, lower, upper ) | |
| if ( lower > upper ) then lower, upper = upper, lower end | |
| return math.max( lower, math.min( upper, val ) ) | |
| end | |