etcupdate.sh (d0ba99d943e69e6d5cc80e7ab3e0403c687652ea) | etcupdate.sh (45a13fd89987533add2888ed3cc093fab29e3bbc) |
---|---|
1#!/bin/sh 2# 3# SPDX-License-Identifier: BSD-2-Clause-FreeBSD 4# 5# Copyright (c) 2010-2013 Hudson River Trading LLC 6# Written by: John H. Baldwin <jhb@FreeBSD.org> 7# All rights reserved. 8# --- 1723 unchanged lines hidden (view full) --- 1732 1733# The path of the "warnings" file that accumulates warning notes from an update. 1734WARNINGS=$WORKDIR/warnings 1735 1736# Use $EDITOR for resolving conflicts. If it is not set, default to vi. 1737EDITOR=${EDITOR:-/usr/bin/vi} 1738 1739# Files that need to be updated before installworld. | 1#!/bin/sh 2# 3# SPDX-License-Identifier: BSD-2-Clause-FreeBSD 4# 5# Copyright (c) 2010-2013 Hudson River Trading LLC 6# Written by: John H. Baldwin <jhb@FreeBSD.org> 7# All rights reserved. 8# --- 1723 unchanged lines hidden (view full) --- 1732 1733# The path of the "warnings" file that accumulates warning notes from an update. 1734WARNINGS=$WORKDIR/warnings 1735 1736# Use $EDITOR for resolving conflicts. If it is not set, default to vi. 1737EDITOR=${EDITOR:-/usr/bin/vi} 1738 1739# Files that need to be updated before installworld. |
1740PREWORLD_FILES="lib/libc/gen/master.passwd lib/libc/gen/group" 1741# If on an older tree, use it instead. Delete after 13.0. 1742[ -f ${SRCDIR}/etc/master.passwd ] && PREWORLD_FILES="etc/master.passwd etc/group" | 1740PREWORLD_FILES="etc/master.passwd etc/group" |
1743 1744# Handle command-specific argument processing such as complaining 1745# about unsupported options. Since the configuration file is always 1746# included, do not complain about extra command line arguments that 1747# may have been set via the config file rather than the command line. 1748case $command in 1749 update) 1750 if [ -n "$rerun" -a -n "$tarball" ]; then --- 53 unchanged lines hidden --- | 1741 1742# Handle command-specific argument processing such as complaining 1743# about unsupported options. Since the configuration file is always 1744# included, do not complain about extra command line arguments that 1745# may have been set via the config file rather than the command line. 1746case $command in 1747 update) 1748 if [ -n "$rerun" -a -n "$tarball" ]; then --- 53 unchanged lines hidden --- |