Changeset e814bfe in bootscripts-standard for boot-scripts


Ignore:
Timestamp:
Jul 10, 2014, 3:25:23 AM (10 years ago)
Author:
Chris Staub <chris@…>
Branches:
master
Children:
421f21a
Parents:
27f8c17
Message:

Changed all /var/run references to /run

Location:
boot-scripts
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • boot-scripts/CHANGELOG.lfs

    r27f8c17 re814bfe  
    482482
    483483        * Update to the console script, prevent install of the console script
    484         * Chgrp /var/run/utmp to group utmp if it exists.
     484        * Chgrp /run/utmp to group utmp if it exists.
    485485        * Moved udev from contrib to lfs
    486486        * Moved GATEWAY setup from /etc/rc.d/init.d/network to
  • boot-scripts/Changelog

    r27f8c17 re814bfe  
     1Chris - July 10, 2014
     2        * Changed "/var/run" references to "/run"
     3
    14William - May 21, 2014
    25    * Change versioning to drop Pre1 and use a date
  • boot-scripts/clfs/init.d/cleanfs

    r27f8c17 re814bfe  
    7979                        -delete || failed=1
    8080
    81                 > /var/run/utmp
     81                > /run/utmp
    8282                if grep -q '^utmp:' /etc/group ; then
    83                         chmod 664 /var/run/utmp
    84                         chgrp utmp /var/run/utmp
     83                        chmod 664 /run/utmp
     84                        chgrp utmp /run/utmp
    8585                fi
    8686
  • boot-scripts/clfs/init.d/functions

    r27f8c17 re814bfe  
    418418                        "ID(s) ${pidlist}.${NORMAL}"
    419419        else
    420                 if [ -n "${base}" -a -e "/var/run/${base}.pid" ]; then
     420                if [ -n "${base}" -a -e "/run/${base}.pid" ]; then
    421421                        ${ECHO} -e "${WARNING}${1} is not running but"\
    422                                 "/var/run/${base}.pid exists.${NORMAL}"
     422                                "/run/${base}.pid exists.${NORMAL}"
    423423                else
    424424                        if [ -n "${pidfile}" -a -e "${pidfile}" ]; then
Note: See TracChangeset for help on using the changeset viewer.