- Confirmed that cpuset(8) functions in the new location:
```
$ (set -x; cat ~/looper.sh; ~/looper.sh & )
+ cat /home/ngie/looper.sh
#!/bin/sh
while :; do sleep 1; done
+ /home/ngie/looper.sh
$ ps auxww | grep looper
ngie 44809 0.0 0.0 13408 3308 1 S 17:06 0:00.01 /bin/sh /home/ngie/looper.sh
ngie 44876 0.0 0.0 12840 2744 1 S+ 17:07 0:00.00 grep looper
$ ls -l `which -a cpuset`
-r-xr-xr-x 1 root wheel 13000 Aug 10 16:24 /bin/cpuset
lrwxr-xr-x 1 root wheel 11 Aug 10 16:24 /usr/bin/cpuset -> /bin/cpuset
$ /bin/cpuset -g -p 44809
pid 44809 mask: 0, 1, 2, 3, 4, 5
pid 44809 domain policy: first-touch mask: 0
$ /usr/bin/cpuset -g -p 44809
pid 44809 mask: 0, 1, 2, 3, 4, 5
pid 44809 domain policy: first-touch mask: 0
$ pgrep sshd
856
$ sudo cpuset -g -p 856
pid 856 mask: 0, 1, 2, 3, 4, 5
pid 856 domain policy: first-touch mask: 0
$ sudo /usr/bin/cpuset -c -l 5 -p 856
$ sudo cpuset -g -p 856
pid 856 mask: 5
pid 856 domain policy: first-touch mask: 0
$ sudo cpuset -c -l 0-5 -p 856
$ sudo cpuset -g -p 856
pid 856 mask: 0, 1, 2, 3, 4, 5
pid 856 domain policy: first-touch mask: 0
```
TODO:
- Test out rc.subr change.