Changeset 8953f24 for bootscripts/lfs/init.d
- Timestamp:
- Sep 24, 2006, 12:22:14 AM (18 years ago)
- Branches:
- clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- 576135a
- Parents:
- 040521bc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
bootscripts/lfs/init.d/functions
r040521bc r8953f24 128 128 # Reset STRING_LENGTH for next message 129 129 STRING_LENGTH="0" 130 if [ "$LOGGING" ]; then 131 boot_log "${BOOTMESG}${@}" 132 fi 130 133 } 131 134 132 135 boot_log() 133 136 { 134 # Left in for backwards compatibility 135 echo -n "" 137 if [ "$LOGGING" ]; then 138 /bin/logger -p local2.info -t bootlog "${@}" 139 else 140 return 0 141 fi 136 142 } 137 143 … … 197 203 boot_mesg -n "If you're able to track this" 198 204 boot_mesg -n " error down to a bug in one of the files provided by" 199 boot_mesg -n " the LFS book, please be so kind to inform us at"200 boot_mesg " lfs-dev@linuxfromscratch.org.\n"205 boot_mesg -n " the CLFS book, please be so kind to inform us at" 206 boot_mesg " clfs-dev@cross-lfs.org.\n" 201 207 boot_mesg_flush 202 208 if [ "$INTERACTIVE" ]; then … … 452 458 } 453 459 454 # This will ensure compatibility with previous LFS Bootscripts460 # This will ensure compatibility with previous CLFS Bootscripts 455 461 getpids() 456 462 { … … 494 500 local nicelevel="10" 495 501 496 # This will ensure compatibility with previous LFS Bootscripts502 # This will ensure compatibility with previous CLFS Bootscripts 497 503 if [ -n "${PIDFILE}" ]; then 498 504 pidfile="${PIDFILE}" … … 586 592 pidlist="" 587 593 588 # This will ensure compatibility with previous LFS Bootscripts594 # This will ensure compatibility with previous CLFS Bootscripts 589 595 if [ -n "${PIDFILE}" ]; then 590 596 pidfile="${PIDFILE}"
Note:
See TracChangeset
for help on using the changeset viewer.