secupdate: apply FreeBSD binary patches and recompile custom kernel for the lazy.

このコミットが含まれているのは:
n 2015-01-28 23:04:04 +01:00
コミット 26e0e93286
1個のファイルの変更12行の追加0行の削除

12
secupdate 実行可能ファイル
ファイルの表示

@ -0,0 +1,12 @@
#!/bin/sh
#
# secupdate: apply FreeBSD binary patches
# and recompile custom kernel for the lazy.
freebsd-update fetch && \
freebsd-update install && \
cd /usr/src && \
make buildkernel KERNCONF=TK && \
make installkernel KERNCONF=TK && \
echo && \
echo "update done. please reboot."