8 lines
103 B
Bash
8 lines
103 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Update repo and check packages for FreeBSD
|
||
|
|
||
|
pkg update -q
|
||
|
pkg upgrade -qnUy
|
||
|
pkg audit -qF
|