Skip to content

Commit 49faaf8

Browse files
authored
Merge pull request #375 from ghostbsd/freebsd-update-pkg
Create a freebsd-update package and adding t to jail dependency
2 parents 50c3a43 + 8140b66 commit 49faaf8

3 files changed

Lines changed: 26 additions & 0 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*
2+
* FreeBSD Update Package
3+
*/
4+
5+
comment = "Binary updates for the FreeBSD base system"
6+
7+
desc = <<EOD
8+
The freebsd-update(8) utility fetches and installs binary security and
9+
errata updates for the FreeBSD base system. It can also be used to
10+
upgrade from one major or minor version of FreeBSD to another.
11+
12+
freebsd-update(8) uses cryptographic signatures to verify the authenticity
13+
of downloaded updates, and includes support for rollback of failed updates.
14+
EOD
15+
16+
annotations {
17+
set = "minimal,minimal-jail"
18+
}

release/packages/ucl/jail-all.ucl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ jails, and an optional rc(8) service to start jails during system startup using
3131
the /etc/jail.conf configuration file.
3232
EOD
3333

34+
deps {
35+
"freebsd-update" {
36+
version = "${VERSION}"
37+
}
38+
}
39+
3440
annotations {
3541
set = "optional,optional-jail"
3642
}

usr.sbin/freebsd-update/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
PACKAGE= freebsd-update
2+
13
CONFS= freebsd-update.conf
24
SCRIPTS=freebsd-update.sh
35
MAN= freebsd-update.8

0 commit comments

Comments
 (0)