Re: Where to set ENV vars for use at boot time

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Wed, Jan 5, 2011 at 10:04, JB <jb.1234abcd@xxxxxxxxx> wrote:
Donald Russell <russell.don <at> gmail.com> writes:

> ...

There is no clearly defined config file to set in/read from your fsck env
variable.
So, you have to modify startup scripts and set it there before fsck call.

# grep -ir fsck /etc
...
/etc/init.d/netfs
...
/etc/rc.d/init.d/netfs
...
/etc/rc.d/rc.sysinit
...

Example:
# cat /etc/rc.d/rc.sysinit
...
if [ -f /fastboot ] || strstr "$cmdline" fastboot ; then
   Âfastboot=yes
fi

# *************************************************************************
# read your fsck env variable here
# *************************************************************************

if [ -f /fsckoptions ]; then
   Âfsckoptions=$(cat /fsckoptions)
fi

...

if [ -z "$fastboot" -a "$READONLY" != "yes" ]; then

   ÂSTRING=$"Checking filesystems"
   Âecho $STRING
   Âfsck -T -t noopts=_netdev -A $fsckoptions
...


Thanks....

I decided to add the env vars in /etc/sysconfig/network...

# fsck values are provided here so they are picked up by /etc/rc.sysinit
# when the system boots up.
# This way I don't have to modify the rc.sysinit script to get fsck
# to use parallelism.
FSCK_FORCE_ALL_PARALLEL=1
FSCK_MAX_INST=0

Not the most elegant of solutions, but this way I don't have to worry about conflicts with any future updates to rc.sysinit.

I'm also going to open a ticket with redhat to suggest a more elegant solution

Something like adding this line to rc.sysinit before running fsck...

[ -f /etc/fsckenv ] && . /etc/fsckenv

Similar to how rc.sysinit allows fsck command line options in /fsckoptions

-- 
users mailing list
users@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
[Index of Archives]     [Older Fedora Users]     [Fedora Announce]     [Fedora Package Announce]     [EPEL Announce]     [EPEL Devel]     [Fedora Magazine]     [Fedora Summer Coding]     [Fedora Laptop]     [Fedora Cloud]     [Fedora Advisory Board]     [Fedora Education]     [Fedora Security]     [Fedora Scitech]     [Fedora Robotics]     [Fedora Infrastructure]     [Fedora Websites]     [Anaconda Devel]     [Fedora Devel Java]     [Fedora Desktop]     [Fedora Fonts]     [Fedora Marketing]     [Fedora Management Tools]     [Fedora Mentors]     [Fedora Package Review]     [Fedora R Devel]     [Fedora PHP Devel]     [Kickstart]     [Fedora Music]     [Fedora Packaging]     [Fedora SELinux]     [Fedora Legal]     [Fedora Kernel]     [Fedora OCaml]     [Coolkey]     [Virtualization Tools]     [ET Management Tools]     [Yum Users]     [Yosemite News]     [Gnome Users]     [KDE Users]     [Fedora Art]     [Fedora Docs]     [Fedora Sparc]     [Libvirt Users]     [Fedora ARM]

  Powered by Linux