Re-add latest required system files

This commit is contained in:
JRGTH
2023-05-01 21:01:54 -04:00
parent 61e94b0da4
commit f1b66e2314
9 changed files with 30 additions and 5 deletions

View File

@@ -3,6 +3,7 @@
======================
Version Description
1.1.26......Re-add latest required system files.
1.1.25......Minor cosmetic changes.
1.1.24......Minor cosmetic/wording changes.
1.1.23......Update release list to include 13.2.

View File

@@ -2543,8 +2543,21 @@ The following file could not be merged automatically: ${F}
Press Enter to edit this file in ${EDITOR} and resolve the conflicts
manually...
EOF
read dummy </dev/tty
${EDITOR} `pwd`/merge/new/${F} < /dev/tty
while true; do
read dummy </dev/tty
${EDITOR} `pwd`/merge/new/${F} < /dev/tty
if ! grep -qE '^(<<<<<<<|=======|>>>>>>>)([[:space:]].*)?$' $(pwd)/merge/new/${F} ; then
break
fi
cat <<-EOF
Merge conflict markers remain in: ${F}
These must be resolved for the system to be functional.
Press Enter to return to editing this file.
EOF
done
done < failed.merges
rm failed.merges
@@ -3023,6 +3036,14 @@ Kernel updates have been installed. Please reboot and run
install_from_index INDEX-NEW || return 1
install_delete INDEX-OLD INDEX-NEW || return 1
# Restart sshd if running (PR263489). Note that this does not
# affect child sshd processes handling existing sessions.
if service sshd status >/dev/null 2>/dev/null; then
echo
echo "Restarting sshd after upgrade"
service sshd restart
fi
# Rehash certs if we actually have certctl installed.
if which certctl>/dev/null; then
env DESTDIR=${BASEDIR} certctl rehash
@@ -3484,6 +3505,9 @@ fi
# Set LC_ALL in order to avoid problems with character ranges like [A-Z].
export LC_ALL=C
# Clear environment variables that may affect operation of tools that we use.
unset GREP_OPTIONS
get_params $@
for COMMAND in ${COMMANDS}; do
cmd_${COMMAND}

BIN
conf/system/include/13.2/ar Executable file → Normal file

Binary file not shown.

Binary file not shown.

4
conf/system/include/13.2/jib Normal file → Executable file
View File

@@ -24,7 +24,7 @@
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# $FreeBSD: releng/12.1/share/examples/jails/jib 339977 2018-10-31 23:07:47Z dteske $
# $FreeBSD$
#
############################################################ IDENT(1)
#
@@ -67,7 +67,7 @@
#
# # Standard recipe
# exec.start += "/bin/sh /etc/rc";
# exec.stop = "/bin/sh /etc/rc.shutdown";
# exec.stop = "/bin/sh /etc/rc.shutdown jail";
# exec.consolelog = "/var/log/jail_xxx_console.log";
# mount.devfs;
#

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
1.1.25
1.1.26