* Re: [PATCH] New System call unshare (try 2)
From: Chris Wright @ 2005-10-13 9:58 UTC (permalink / raw)
To: Janak Desai; +Cc: chrisw, viro, nickpiggin, linux-kernel, linux-fsdevel, akpm
In-Reply-To: <Pine.WNT.4.63.0510121201540.1316@IBM-AIP3070F3AM>
* Janak Desai (janak@us.ibm.com) wrote:
> diff -Naurp 2.6.14-rc2-mm2/fs/namespace.c 2.6.14-rc2-mm2+unshare/fs/namespace.c
> --- 2.6.14-rc2-mm2/fs/namespace.c 2005-10-12 02:56:08.000000000 +0000
> +++ 2.6.14-rc2-mm2+unshare/fs/namespace.c 2005-10-12 11:46:52.000000000 +0000
> @@ -1069,9 +1069,6 @@ int copy_namespace(int flags, struct tas
> {
> struct namespace *namespace = tsk->namespace;
> struct namespace *new_ns;
> - struct vfsmount *rootmnt = NULL, *pwdmnt = NULL, *altrootmnt = NULL;
> - struct fs_struct *fs = tsk->fs;
> - struct vfsmount *p, *q;
>
> if (!namespace)
> return 0;
> @@ -1086,6 +1083,28 @@ int copy_namespace(int flags, struct tas
> return -EPERM;
> }
>
> + new_ns = dup_namespace_struct(tsk);
How about just dup_namespace()?
> + if (!new_ns)
> + goto out;
> +
> + tsk->namespace = new_ns;
> +
> + put_namespace(namespace);
> + return 0;
> +
> +out:
> + put_namespace(namespace);
> + return -ENOMEM;
If you 'return err', then you could use single return there.
> +}
> +
> +struct namespace *dup_namespace_struct(struct task_struct *tsk)
> +{
> + struct namespace *namespace = tsk->namespace;
> + struct namespace *new_ns;
> + struct vfsmount *rootmnt = NULL, *pwdmnt = NULL, *altrootmnt = NULL;
> + struct fs_struct *fs = tsk->fs;
> + struct vfsmount *p, *q;
> +
> new_ns = kmalloc(sizeof(struct namespace), GFP_KERNEL);
> if (!new_ns)
> goto out;
> @@ -1134,8 +1153,6 @@ int copy_namespace(int flags, struct tas
> }
> up_write(&tsk->namespace->sem);
>
> - tsk->namespace = new_ns;
> -
> if (rootmnt)
> mntput(rootmnt);
> if (pwdmnt)
> @@ -1143,12 +1160,10 @@ int copy_namespace(int flags, struct tas
> if (altrootmnt)
> mntput(altrootmnt);
>
> - put_namespace(namespace);
> - return 0;
> + return new_ns;
>
> out:
> - put_namespace(namespace);
> - return -ENOMEM;
> + return NULL;
Same here, just return new_ns.
> }
>
> asmlinkage long sys_mount(char __user * dev_name, char __user * dir_name,
> diff -Naurp 2.6.14-rc2-mm2/include/linux/namespace.h 2.6.14-rc2-mm2+unshare/include/linux/namespace.h
> --- 2.6.14-rc2-mm2/include/linux/namespace.h 2005-10-12 02:56:35.000000000 +0000
> +++ 2.6.14-rc2-mm2+unshare/include/linux/namespace.h 2005-10-12 11:45:46.000000000 +0000
> @@ -14,6 +14,7 @@ struct namespace {
>
> extern int copy_namespace(int, struct task_struct *);
> extern void __put_namespace(struct namespace *namespace);
> +extern struct namespace *dup_namespace_struct(struct task_struct *);
>
> static inline void put_namespace(struct namespace *namespace)
> {
> diff -Naurp 2.6.14-rc2-mm2/kernel/fork.c 2.6.14-rc2-mm2+unshare/kernel/fork.c
> --- 2.6.14-rc2-mm2/kernel/fork.c 2005-10-12 02:56:39.000000000 +0000
> +++ 2.6.14-rc2-mm2+unshare/kernel/fork.c 2005-10-12 13:26:05.000000000 +0000
> @@ -448,6 +448,55 @@ void mm_release(struct task_struct *tsk,
> }
> }
>
> +/*
> + * Allocate a new mm structure and copy contents from the
> + * mm structure of the passed in task structure.
> + */
> +static struct mm_struct *dup_mm_struct(struct task_struct *tsk)
How about dup_mm()?
> +{
> + struct mm_struct *mm, *oldmm = current->mm;
> + int err;
> +
> + if (!oldmm)
> + return NULL;
> +
> + mm = allocate_mm();
> + if (!mm)
> + goto fail_nomem;
> +
> + memcpy(mm, oldmm, sizeof(*mm));
> +
> + if (!mm_init(mm))
> + goto fail_nomem;
> +
> + if (init_new_context(tsk, mm))
> + goto fail_nocontext;
> +
> + err = dup_mmap(mm, oldmm);
> + if (err)
> + goto free_pt;
> +
> + mm->hiwater_rss = get_mm_rss(mm);
> + mm->hiwater_vm = mm->total_vm;
> +
> + return mm;
> +
> +free_pt:
> + mmput(mm);
> +
> +fail_nomem:
> + return NULL;
> +
> +fail_nocontext:
> + /*
> + * If init_new_context() failed, we cannot use mmput() to free the mm
> + * because it calls destroy_context()
> + */
> + mm_free_pgd(mm);
> + free_mm(mm);
> + return NULL;
> +}
> +
> static int copy_mm(unsigned long clone_flags, struct task_struct * tsk)
> {
> struct mm_struct * mm, *oldmm;
> @@ -482,43 +531,17 @@ static int copy_mm(unsigned long clone_f
> }
>
> retval = -ENOMEM;
> - mm = allocate_mm();
> + mm = dup_mm_struct(tsk);
> if (!mm)
> goto fail_nomem;
>
> - /* Copy the current MM stuff.. */
> - memcpy(mm, oldmm, sizeof(*mm));
> - if (!mm_init(mm))
> - goto fail_nomem;
> -
> - if (init_new_context(tsk,mm))
> - goto fail_nocontext;
> -
> - retval = dup_mmap(mm, oldmm);
> - if (retval)
> - goto free_pt;
> -
> - mm->hiwater_rss = get_mm_rss(mm);
> - mm->hiwater_vm = mm->total_vm;
> -
> good_mm:
> tsk->mm = mm;
> tsk->active_mm = mm;
> return 0;
>
> -free_pt:
> - mmput(mm);
> fail_nomem:
> return retval;
> -
> -fail_nocontext:
> - /*
> - * If init_new_context() failed, we cannot use mmput() to free the mm
> - * because it calls destroy_context()
> - */
> - mm_free_pgd(mm);
> - free_mm(mm);
> - return retval;
> }
>
> static inline struct fs_struct *__copy_fs_struct(struct fs_struct *old)
> @@ -753,6 +776,23 @@ int unshare_files(void)
>
> EXPORT_SYMBOL(unshare_files);
>
> +/*
> + * Allocate a new sighand structure and copy contents from the
> + * sighand of the passed in task structure
> + */
> +static struct sighand_struct *dup_sh_struct(struct task_struct *tsk)
dup_sighand is more expressive name.
> +{
> + struct sighand_struct *sh;
> +
> + sh = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
> + if (!sh)
> + return NULL;
> + spin_lock_init(&sh->siglock);
> + atomic_set(&sh->count, 1);
> + memcpy(sh->action, current->sighand->action, sizeof(sh->action));
> + return sh;
> +}
> +
> static inline int copy_sighand(unsigned long clone_flags, struct task_struct * tsk)
> {
> struct sighand_struct *sig;
> @@ -761,13 +801,10 @@ static inline int copy_sighand(unsigned
> atomic_inc(¤t->sighand->count);
> return 0;
> }
> - sig = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
> + sig = dup_sh_struct(tsk);
> tsk->sighand = sig;
> if (!sig)
> return -ENOMEM;
> - spin_lock_init(&sig->siglock);
> - atomic_set(&sig->count, 1);
> - memcpy(sig->action, current->sighand->action, sizeof(sig->action));
> return 0;
> }
>
> @@ -1321,3 +1358,164 @@ void __init proc_caches_init(void)
> sizeof(struct mm_struct), 0,
> SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL, NULL);
> }
> +
> +/*
> + * Performs sanity checks on the flags passed to the unshare system
> + * call.
> + */
> +static inline int check_unshare_flags(unsigned long unshare_flags)
> +{
> + int err = -EINVAL;
> +
> + if (unshare_flags & ~(CLONE_NEWNS | CLONE_VM | CLONE_SIGHAND))
> + goto errout;
> +
> + /*
> + * Shared signal handlers imply shared VM, so if CLONE_SIGHAND is
> + * set, CLONE_VM must also be set in the system call argument.
> + */
> + if ((unshare_flags & CLONE_SIGHAND) && !(unshare_flags & CLONE_VM))
> + goto errout;
Oops, this test is backwards.
> + /*
> + * Cannot unshare namespace if the fs structure is being shared
> + * through a previous call to clone()
> + */
> + if ((unshare_flags & CLONE_NEWNS) &&
> + (atomic_read(¤t->fs->count) > 1))
> + goto errout;
> +
> + if (unshare_flags & CLONE_VM) {
> + /*
> + * Cannot unshare vm if the signal structure is being shared
> + * through a previous call to clone() with CLONE_THREAD.
> + */
> + if (atomic_read(¤t->signal->count) > 1)
> + goto errout;
> +
> + /*
> + * Cannot unshare vm only if the sighand structure is being
> + * shared through a previous call to clone()
> + */
> + if (!(unshare_flags & CLONE_SIGHAND) &&
> + (atomic_read(¤t->sighand->count) > 1))
And it's really just this case that's the issue.
> + goto errout;
> +
> + /*
> + * If the task is performing async io, unsharing of vm will
> + * only allow the parent task, with which the vm was being
> + * shared, to continue async io operations. The async io
> + * context is not copied to the new, unshared, copy of vm.
> + * So don't allow unsharing of vm if the process is setup
> + * to perform async io.
> + */
> + if (current->mm->ioctx_list)
> + goto errout;
This is likely overkill. The scenario I was woried about was a single
task that manages to unshare itself (easy with concurrent read of /proc
entry). I was concerned it had possibility to cause some trouble
when mmdrop happened while ctx_id was still valid mapping in new mm.
But the dup will zero the ioctx_list, exit_aio will have been called,
so I think it's no different than setting up aio and then calling exit(2).
Not very useful, but looks harmless.
> + }
> + return 0;
> +
> +errout:
> + return err;
> +
> +}
> +
> +/*
> + * unshare allows a process to 'unshare' part of the process
> + * context which was originally shared using clone. copy_*
> + * functions used by do_fork() cannot be used here directly
> + * because they modify an inactive task_struct that is being
> + * constructed. Here we are modifying the current, active,
> + * task_struct.
> + */
> +asmlinkage long sys_unshare(unsigned long unshare_flags)
> +{
> + int err = 0, unshare_ns = 0, unshare_mm = 0, unshare_sh = 0;
> + struct namespace *new_ns = NULL, *ns = current->namespace;
> + struct mm_struct *new_mm = NULL, *active_mm = NULL, *mm = current->mm;
> + struct sighand_struct *new_sh = NULL, *sh = current->sighand;
Aren't these flags unnecessary?
!unshare_ns == !new_ns, !unshare_mm == !new_mm, !unshare_sh == !new_sh
> +
> + err = check_unshare_flags(unshare_flags);
> + if (err)
> + goto unshare_out;
> +
> + if (unshare_flags & CLONE_NEWNS) {
> + if (ns && atomic_read(&ns->count) > 1) {
> + err = -EPERM;
> + if (!capable(CAP_SYS_ADMIN))
> + goto unshare_out;
> +
> + err = -ENOMEM;
> + new_ns = dup_namespace_struct(current);
> + if (!new_ns)
> + goto unshare_out;
> + else
> + unshare_ns = 1;
drop else
> + }
> + }
> +
> + if (unshare_flags & CLONE_VM) {
> + if (atomic_read(&mm->mm_users) > 1) {
Save some tabs...
if ((unshare_flags & CLONE_VM) && atomic_read(&mm->mm_users) > 1)
> + err = -ENOMEM;
> + new_mm = dup_mm_struct(current);
> + if (!new_mm)
> + goto unshare_cleanup_ns;
> + else {
drop else
> + unshare_mm = 1;
> + if (unshare_flags & CLONE_SIGHAND) {
> + if (atomic_read(&sh->count) > 1) {
Save some more tabs. Another compound conditional. Actually you can't
do unshare VM w/out unsharing sighand, so only checking for sighand->count
matters.
> + new_sh = dup_sh_struct(current);
> + if (!new_sh)
> + goto unshare_cleanup_mm;
> + else
> + unshare_sh = 1;
drop else
> + }
> + }
> + }
> + }
> + }
> +
> + if (unshare_ns) {
> + task_lock(current);
> + current->namespace = new_ns;
> + task_unlock(current);
> + put_namespace(ns);
> + }
Typically it makes locking simpler to take and release lock once.
Something like:
task_lock(current);
if (new_ns)
current->namspace = new_ns;
if (new_mm) {
current->mm = new_mm;
...
}
task_unlock(current);
But the put_namespace and mmput make it ugly either way.
> +
> + if (unshare_mm) {
> + task_lock(current);
> + current->min_flt = current->maj_flt = 0;
> + current->nvcsw = current->nivcsw = 0;
I don't think we need to reset these statistics, it's not a new task.
> + active_mm = current->active_mm;
> + current->mm = new_mm;
> + current->active_mm = new_mm;
> + activate_mm(active_mm, new_mm);
> + task_unlock(current);
> + mmput(mm);
> + }
> +
> + if (unshare_sh) {
> + write_lock_irq(&tasklist_lock);
> + spin_lock(&sh->siglock);
> + spin_lock(&new_sh->siglock);
> + current->sighand = new_sh;
> + spin_unlock(&new_sh->siglock);
> + spin_unlock(&sh->siglock);
> + write_unlock_irq(&tasklist_lock);
> +
> + if (atomic_dec_and_test(&sh->count))
> + kmem_cache_free(sighand_cachep, sh);
Should have a helper. Also, this looks like trouble. I believe this
could cause an oops because sighand count is used more like thread count
than refcount.
> + }
> +
> + return 0;
> +
> +unshare_cleanup_mm:
> + if (unshare_mm)
> + mmput(new_mm);
> +
> +unshare_cleanup_ns:
> + if (unshare_ns)
> + put_namespace(new_ns);
> +
> +unshare_out:
> + return err;
> +}
^ permalink raw reply
* Re: Xen 2.0.8 with 2.6.12 support?
From: Steven Hand @ 2005-10-13 9:58 UTC (permalink / raw)
To: Pasi Kärkkäinen; +Cc: xen-devel
In-Reply-To: <20051013094915.GU10146@edu.joroinen.fi>
> Is xen 2.0.8 with 2.6.12 support going to be released anytime soon?
> xen-2.0-testing with 2.6.12 seems to work OK at least for me..
We have a few more fixes we need to get tested, but after that we'll
hopefully release a 2.0.8.
The major delay right now is that most people are working on trying
to get 3.0.0 out the door which doesn't leave a lot of time for 2.x!
It's good to get reports like your which demonstrate that things
seem to work well.
> And we already have 2.6.13 available, and 2.6.14 soon.. is xen 2.0 going to
> be maintained still, or is all effort going to xen 3.0 ?
Most effort is going to xen 3.0 ; in addition, we're moving towards
a model where the linux parts of xen (i.e. the bits currently in the
"sparse trees") will be pushed upstream. A lot of people are working
on this (see e.g. the xen-merge mailing list, or the mercurial
repository at http://xenbits.xensource.com/linux-2.6-xen.hg)
However it is unlikely that this same work will support xen 2.x,
at least initially.
cheers,
S.
^ permalink raw reply
* how to compile?
From: Stephan Böni @ 2005-10-13 9:57 UTC (permalink / raw)
To: xen-devel
[-- Attachment #1.1: Type: text/plain, Size: 652 bytes --]
Do i something wrong?
The only thing i do, is:
# make world
# ./install.sh
# cd linux-2.6.12-xen0
# make ARCH=xen menuconfig
--> adding qla2300
# cd ..
# make dist
# make install
# depmod
The /boot/grub/menu.lst looks as follows:
# works fine, but without xen:
title SUSE Linux 10.0
root (hd0,5)
kernel /boot/vmlinuz root=/dev/sda6 acpi=off resume=/dev/sda5
initrd /boot/initrd
# does not work:
title Xen Master
root (hd0,5)
kernel /boot/xen.gz dom0_mem=131072
module /boot/vmlinuz-2.6-xen0 root=/dev/sda6 acpi=off
module /boot/initrd-xen
Thanks for any help
Stephan
[-- Attachment #1.2: Type: text/html, Size: 3216 bytes --]
[-- Attachment #2: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply
* Re: Need a method to reset the ip_conntrack_count
From: Eric Leblond @ 2005-10-13 9:55 UTC (permalink / raw)
To: netfilter
In-Reply-To: <007d01c5cfd8$fa089840$aa0ba8c0@l7.com.tw>
> Hello folks,
>
> I have encountered one question. Does it have a way to flush the
> My Enviroment:
> Kenel: 2.6.10
> Iptables: 1.2.9
you need to use the upcoming 2.6.14 to be able to do so....
Pablo Neira's conntrack tool can do the job.
>
> Any hint are appreciated.
>
> Vincent
>
>
>
>
^ permalink raw reply
* Re: [PATCH] [BLUETOOTH] kmalloc + memset -> kzalloc conversion
From: Marcel Holtmann @ 2005-10-13 9:52 UTC (permalink / raw)
To: Paulo Marques; +Cc: dsaxena, Andrew Morton, linux-kernel
In-Reply-To: <434CFF51.1070709@grupopie.com>
Hi Paulo,
> >>>Confused. This patch changes lots of block code, not bluetooth.
> >>
> >>I know. This is what I already mailed Deepak, but he never replied.
> >
> > Sorry, got lost in the mailbox. I think I was not paying attention to
> > my tab completion and included the wrong patch. Proper patch follows.
> >
> [...]
> > --- a/drivers/bluetooth/hci_usb.c
> > +++ b/drivers/bluetooth/hci_usb.c
> > @@ -134,10 +134,9 @@ static struct usb_device_id blacklist_id
> >
> > static struct _urb *_urb_alloc(int isoc, unsigned int __nocast gfp)
> > {
> > - struct _urb *_urb = kmalloc(sizeof(struct _urb) +
> > + struct _urb *_urb = kzalloc(sizeof(struct _urb) +
> > sizeof(struct usb_iso_packet_descriptor) * isoc, gfp);
> > if (_urb) {
> > - memset(_urb, 0, sizeof(*_urb));
> > usb_init_urb(&_urb->urb);
> > }
> > return _urb;
>
> This one doesn't keep the exact same behavior as before, as it is
> zeroing more memory than it did.
>
> If this is not a performance critical path, then I guess it's ok (code
> size reduction, and all).
>
> I just wanted to call some attention on this so that someone more
> knowledgeable than me in the bluetooth ways can make sure it's ok.
the current hci_usb URB shim layer is crap anyhow. We need to replace it
at some point with better code, but so far I haven't had the time to do
this properly.
Regards
Marcel
^ permalink raw reply
* relocating packets
From: Mark Oden @ 2005-10-13 9:50 UTC (permalink / raw)
To: netfilter
Assuming I had two NICs in my machine that happen to be on the same
network, is there a way to force packets of certain ports to use only
one NIC or IP?
Thanks,
~Mark
^ permalink raw reply
* Re: [Xen-users] xen 3.0 boot problem
From: Stephan Böni @ 2005-10-13 9:50 UTC (permalink / raw)
To: githogori; +Cc: xen-devel
[-- Attachment #1: Type: text/plain, Size: 187 bytes --]
> Attached is my config file for Xen 3.0 and QLogic as a module.
It does not work. The boot process hangs on mpt scsi recovery, even before any qla adapter is configured.
Stephan
[-- Attachment #2: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply
* Xen 2.0.8 with 2.6.12 support?
From: Pasi Kärkkäinen @ 2005-10-13 9:49 UTC (permalink / raw)
To: xen-devel
Hi list!
Is xen 2.0.8 with 2.6.12 support going to be released anytime soon?
xen-2.0-testing with 2.6.12 seems to work OK at least for me..
And we already have 2.6.13 available, and 2.6.14 soon.. is xen 2.0 going to
be maintained still, or is all effort going to xen 3.0 ?
Thanks!
-- Pasi Kärkkäinen
^
. .
Linux
/ - \
Choice.of.the
.Next.Generation.
^ permalink raw reply
* Re: [Xenomai-core] Future of fusion
From: Jan Kiszka @ 2005-10-13 9:46 UTC (permalink / raw)
To: Herman Bruyninckx; +Cc: xenomai
In-Reply-To: <Pine.LNX.4.64.0510131033300.5110@domain.hid>
[-- Attachment #1: Type: text/plain, Size: 1509 bytes --]
Herman Bruyninckx wrote:
> On Thu, 13 Oct 2005, Philippe Gerum wrote:
> [...]
>
>> - Drivers: Now that we have a deeply integrated port of RTDM, what's
>> next? Field busses and other industrial gizmos anyone?
>
>
> That's an interesting avenue for all our machine control oriented realtime
> applications. But this avenue is full of incomplete or non-free
> specifications and interfaces...
>
Indeed, but we cannot solve all problems at once. Let's start with those
devices which are more or less open (and there are already a lot). Let's
also try to propagate the message that RTDM is the prefered way to
provide real-time drivers. And if someone comes up with a new driver,
check if its interface is generic enough to implement it for similar
devices as well (=>generic device profiles).
Far from being perfect, but there are first efforts for such profiles:
Serial (as it comes with Xenomai), process image (see the Hilscher
Interbus driver I once announced), or CAN (yet a bit in flux, but things
slowly stabilises here). Plans exist to go the same way for low level
access to FireWire or USB. And you can even map whole protocol stacks
onto RTDM, like UDP/IP (RTnet) or also CANopen. The enables thrilling
combinations without the need to rewrite your application.
The interest in such progress is there, not yet on the vendor side, but
on the user side - including many industrial users. And they can push
things forward as well, finally making at least some vendors more
cooperative, too.
Jan
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 254 bytes --]
^ permalink raw reply
* XIP issues introduced between 2.6.12 and 2.6.13
From: Konstantin Kletschke @ 2005-10-13 9:43 UTC (permalink / raw)
To: linux-mtd
Well, I want to be more precise:
If I build in jffs2 into Kernel, the Kernel freezes immediatly after
starting sometimes. In seldom times it boots to prompt (with / on
nfs). If it boots to prompt, I can mount mtdblock partitions rw and ls
them. If I touch a file then on it, it breaks 100%.
With jffs2 as module, nor Problem.
How this could correlate with
http://lists.arm.linux.org.uk/pipermail/linux-arm-kernel/2005-October/031686.html
I have really no clue!
Regards, Konsti
--
GPG KeyID EF62FCEF
Fingerprint: 13C9 B16B 9844 EC15 CC2E A080 1E69 3FDA EF62 FCEF
^ permalink raw reply
* [ALSA - driver 0001460]: no sound on Clevo 400a
From: bugtrack @ 2005-10-13 9:43 UTC (permalink / raw)
To: alsa-devel
A NOTE has been added to this issue.
======================================================================
<https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1460>
======================================================================
Reported By: imre
Assigned To: tiwai
======================================================================
Project: ALSA - driver
Issue ID: 1460
Category: PCI - hda-intel
Reproducibility: always
Severity: major
Priority: normal
Status: assigned
Distribution: Debian sid
Kernel Version: 2.6.14-rc2-git5
======================================================================
Date Submitted: 09-26-2005 16:02 CEST
Last Modified: 10-13-2005 11:43 CEST
======================================================================
Summary: no sound on Clevo 400a
Description:
On my Clevo M400A the integrated soundcard doesn't work. When starting
alsa
the kernel logs the following:
hda_codec: num_steps = 0 for NID=0xb
ACPI: PCI interrupt for device 0000:00:1b.0 disabled
ACPI: PCI Interrupt 0000:00:1b.0[A] -> GSI 20 (level, low) -> IRQ 50
PCI: Setting latency timer of device 0000:00:1b.0 to 64
ALSA sound/pci/hda/hda_intel.c:624: codec_mask = 0x3
hda_codec: Unknown model for ALC880, trying auto-probe from BIOS...
hda_codec: num_steps = 0 for NID=0x8
and the last message is printed several times
Maybe this is the same issue that was reported in #1316
======================================================================
Relationships ID Summary
----------------------------------------------------------------------
duplicate of 0001429 hda_codec: Unknown model for ALC880
======================================================================
----------------------------------------------------------------------
tiwai - 10-11-05 16:33
----------------------------------------------------------------------
First of all, please elaborate what you mean "doesn't work".
The num_steps are harmless unless you access to the corresponding node
(i.e. try to adjust CD volume). It seems that the device has no CD and no
corresponding ADC nodes.
As you can see in the log, the BIOS is broken. Pass model=3stack option,
for example, to specify the model to use.
----------------------------------------------------------------------
drlizau - 10-13-05 11:43
----------------------------------------------------------------------
'doesn't work'
alsaconf identifies card and configures it
no sound is heard whether kscd playing a cd or xmms playing an ogg file
(alsa-oss is installed) out of headphones, speakers, line out. Mute on or
off, no difference.
everything says it should work, but no sound is produced
Issue History
Date Modified Username Field Change
======================================================================
09-26-05 16:02 imre New Issue
09-26-05 16:02 imre Distribution => Debian sid
09-26-05 16:02 imre Kernel Version => 2.6.14-rc2-git5
09-26-05 19:14 rlrevell Relationship added duplicate of 0001429
10-10-05 12:21 drlizau Note Added: 0006448
10-10-05 12:24 drlizau Issue Monitored: drlizau
10-11-05 16:33 tiwai Note Added: 0006453
10-13-05 11:43 drlizau Note Added: 0006476
======================================================================
-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
^ permalink raw reply
* unable to mount /net to RHEL4 from sunos5.8
From: Krishna @ 2005-10-13 9:42 UTC (permalink / raw)
To: autofs
[-- Attachment #1.1: Type: text/plain, Size: 4896 bytes --]
Hi all ,
Could you please address my issue. i am facing problems in mounting /net. The server is sunos5.8 and my client is RHEL4.
I have attached the /var/log/debug file for your reference.
I am facing some issues in mounting the /net directory from the Solaris server (SunOS 5.8) to my RHEL4. I am trying to automount the /net directory to download VOB files to my local RHEL4 client. The Autofs version i have in my RHEL4 client is autofs-4.1.3-67.I am not sure if i have to apply a patch to the existing autofs version, since you have discussed extensively about apply patches for autofs4, i am raising this query.
Do you have any whitepaper that gives me in detail to steps for mount the /net non sharable filesystem? I was told that /net cannot be shared to hard mount.
will there be any configuration on the sunos server to add my client name for mounting /net ??
Could you please give me a solution to this problem. i have been trying to fix this issue for quite sometime!
\r\n
\r\ni am copying my auto.master and auto.net file here...\r\n
\r\n
\r\nmy auto.master file says following
\r\n
\r\n#
# $Id: auto.master,v 1.3 2003/09/29 08:22:35 raven Exp $
#
# Sample auto.master file
# This is an automounter map and it has the following format
\r\n# key [ -mount-options-separated-by-comma ] location
# For details of the format look at autofs(5).
#/misc /etc/auto.misc --timeout=60
#/misc /etc/auto.misc
/net /etc/auto.net
\r\nmy auto.net file says
\r\n
\r\n\r\n
#!/bin/sh
\r\n
# $Id: auto.net,v 1.5 2003/09/29 08:22:35 raven Exp $
\r\n
# Look at what a host is exporting to determine what we can mount.
# This is very simple, but it appears to work surprisingly well
\r\n
key="$1"
\r\n
# add "nosymlink" here if you want to suppress symlinking local filesystems
# add "nonstrict" to make it OK for some filesystems to not mount
opts="-fstype=nfs,hard,intr,nodev,nosuid" \r\n
\r\n
# Showmount comes in a number of names and varieties. "showmount" is",1]);//-->
i am copying my auto.master and auto.net file here...
my auto.master file says following
#
# $Id: auto.master,v 1.3 2003/09/29 08:22:35 raven Exp $
#
# Sample auto.master file
# This is an automounter map and it has the following format
# key [ -mount-options-separated-by-comma ] location
# For details of the format look at autofs(5).
#/misc /etc/auto.misc --timeout=60
#/misc /etc/auto.misc
/net /etc/auto.net
my auto.net file says
#!/bin/sh
# $Id: auto.net,v 1.5 2003/09/29 08:22:35 raven Exp $
# Look at what a host is exporting to determine what we can mount.
# This is very simple, but it appears to work surprisingly well
key="$1"
# add "nosymlink" here if you want to suppress symlinking local filesystems
# add "nonstrict" to make it OK for some filesystems to not mount
opts="-fstype=nfs,hard,intr,nodev,nosuid"
# Showmount comes in a number of names and varieties. "showmount" is# typically an older version which accepts the \'--no-headers\' flag
# but ignores it. "kshowmount" is the newer version installed with knfsd, \r\n
# which both accepts and acts on the \'--no-headers\' flag.
#SHOWMOUNT="kshowmount --no-headers -e $key"
#SHOWMOUNT="showmount -e $key | tail +2"
\r\n
# Newer distributions get this right
SHOWMOUNT="/usr/sbin/showmount --no-headers -e $key"
\r\n
$SHOWMOUNT | sort +0 | \\
awk -v key="$key" -v opts="$opts" -- \'
BEGIN { ORS=""; first=1 }
{ if (first) { print opts; first=0 }; print " \r\n\\\\\\n\\t" $1, key ":" $1 }
END { if (!first) print "\\n"; else exit 1 }
\'
\r\n
\r\nand nsswitch.conf for automount is configured for files.
\r\n
\r\n
--
Kind regards
Krishna.
",1]);//-->
# typically an older version which accepts the '--no-headers' flag
# but ignores it. "kshowmount" is the newer version installed with knfsd,
# which both accepts and acts on the '--no-headers' flag.
#SHOWMOUNT="kshowmount --no-headers -e $key"
#SHOWMOUNT="showmount -e $key | tail +2"
# Newer distributions get this right
SHOWMOUNT="/usr/sbin/showmount --no-headers -e $key"
$SHOWMOUNT | sort +0 | \
awk -v key="$key" -v opts="$opts" -- '
BEGIN { ORS=""; first=1 }
{ if (first) { print opts; first=0 }; print " \\\n\t" $1, key ":" $1 }
END { if (!first) print "\n"; else exit 1 }
'
and nsswitch.conf for automount is configured for files.
--
Kind regards
Krishna.
--
Kind regards
Krishna.
Krishna Prasadh Venkataraman
krishnap.venkataraman@gmail.com
\r\n\r\n",0]);D(["ma","debug
148K View Download "]);D(["ce"]);D(["ms","7a0"]);//-->
---------------------------------
Yahoo! Music Unlimited - Access over 1 million songs. Try it free.
[-- Attachment #1.2: Type: text/html, Size: 10139 bytes --]
[-- Attachment #2: 115805988-debug --]
[-- Type: text/plain, Size: 148801 bytes --]
Oct 11 17:08:27 Inblr-bislinux1 syslogd 1.4.1: restart.
Oct 11 17:08:27 Inblr-bislinux1 syslog: syslogd startup succeeded
Oct 11 17:08:27 Inblr-bislinux1 kernel: klogd 1.4.1, log source = /proc/kmsg started.
Oct 11 17:08:27 Inblr-bislinux1 syslog: klogd startup succeeded
Oct 11 17:08:27 Inblr-bislinux1 syslog: syslogd shutdown succeeded
Oct 11 17:09:33 Inblr-bislinux1 automount[12507]: handle_packet: type = 0
Oct 11 17:09:33 Inblr-bislinux1 automount[12507]: handle_packet_missing: token 113, name idps3
Oct 11 17:09:33 Inblr-bislinux1 automount[12507]: attempting to mount entry /net/idps3
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: lookup(file): idps3 -> -fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6 idps3:/net/idps3
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: parse(sun): expanded entry: -fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6 idps3:/net/idps3
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: parse(sun): dequote("fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6") -> fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: parse(sun): gathered options: fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: parse(sun): dequote("idps3:/net/idps3") -> idps3:/net/idps3
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: parse(sun): core of entry: options=fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6, loc=idps3:/net/idps3
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: parse(sun): mounting root /net, mountpoint idps3, what idps3:/net/idps3, fstype nfs, options rsize=8192,wsize=8192,timeo=5,retrans=6
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: mount(nfs): root=/net name=idps3 what=idps3:/net/idps3, fstype=nfs, options=rsize=8192,wsize=8192,timeo=5,retrans=6
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: mount(nfs): nfs options="rsize=8192,wsize=8192,timeo=5,retrans=6", nosymlink=0
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: mount(nfs): winner = (null) local = 0
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: mount(nfs): no host elected
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: failed to mount /net/idps3
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: umount_multi: path=/net/idps3 incl=1
Oct 11 17:09:33 Inblr-bislinux1 automount[12507]: handle_child: got pid 12614, sig 0 (0), stat 1
Oct 11 17:09:33 Inblr-bislinux1 automount[12507]: sig_child: found pending iop pid 12614: signalled 0 (sig 0), exit status 1
Oct 11 17:09:33 Inblr-bislinux1 automount[12507]: send_fail: token=113
Oct 11 17:13:36 Inblr-bislinux1 automount[12507]: handle_packet: type = 0
Oct 11 17:13:36 Inblr-bislinux1 automount[12507]: handle_packet_missing: token 114, name idps3
Oct 11 17:13:36 Inblr-bislinux1 automount[12507]: attempting to mount entry /net/idps3
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: lookup(file): idps3 -> -fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6 idps3:/net/idps3
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: parse(sun): expanded entry: -fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6 idps3:/net/idps3
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: parse(sun): dequote("fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6") -> fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: parse(sun): gathered options: fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: parse(sun): dequote("idps3:/net/idps3") -> idps3:/net/idps3
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: parse(sun): core of entry: options=fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6, loc=idps3:/net/idps3
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: parse(sun): mounting root /net, mountpoint idps3, what idps3:/net/idps3, fstype nfs, options rsize=8192,wsize=8192,timeo=5,retrans=6
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: mount(nfs): root=/net name=idps3 what=idps3:/net/idps3, fstype=nfs, options=rsize=8192,wsize=8192,timeo=5,retrans=6
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: mount(nfs): nfs options="rsize=8192,wsize=8192,timeo=5,retrans=6", nosymlink=0
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: mount(nfs): winner = (null) local = 0
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: mount(nfs): no host elected
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: failed to mount /net/idps3
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: umount_multi: path=/net/idps3 incl=1
Oct 11 17:13:36 Inblr-bislinux1 automount[12507]: handle_child: got pid 12618, sig 0 (0), stat 1
Oct 11 17:13:36 Inblr-bislinux1 automount[12507]: sig_child: found pending iop pid 12618: signalled 0 (sig 0), exit status 1
Oct 11 17:13:36 Inblr-bislinux1 automount[12507]: send_fail: token=114
Oct 11 17:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 17:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 17:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 17:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12622
Oct 11 17:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12622, sig 0 (0), stat 0
Oct 11 17:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12622 finished, switching from 2 to 1
Oct 11 17:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 17:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 17:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 17:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 17:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 17:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12623
Oct 11 17:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12623, sig 0 (0), stat 0
Oct 11 17:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12623 finished, switching from 2 to 1
Oct 11 17:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 17:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 18:01:01 Inblr-bislinux1 crond(pam_unix)[12624]: session opened for user root by (uid=0)
Oct 11 18:01:01 Inblr-bislinux1 crond[12625]: (root) CMD (run-parts /etc/cron.hourly)
Oct 11 18:01:01 Inblr-bislinux1 crond(pam_unix)[12624]: session closed for user root
Oct 11 18:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 18:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 18:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 18:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12634
Oct 11 18:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12634, sig 0 (0), stat 0
Oct 11 18:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12634 finished, switching from 2 to 1
Oct 11 18:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 18:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 18:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 18:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 18:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 18:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12635
Oct 11 18:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12635, sig 0 (0), stat 0
Oct 11 18:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12635 finished, switching from 2 to 1
Oct 11 18:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 18:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 18:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 18:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 18:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 18:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12638
Oct 11 18:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12638, sig 0 (0), stat 0
Oct 11 18:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12638 finished, switching from 2 to 1
Oct 11 18:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 18:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 18:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 18:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 18:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 18:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12639
Oct 11 18:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12639, sig 0 (0), stat 0
Oct 11 18:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12639 finished, switching from 2 to 1
Oct 11 18:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 18:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 19:01:01 Inblr-bislinux1 crond(pam_unix)[12640]: session opened for user root by (uid=0)
Oct 11 19:01:01 Inblr-bislinux1 crond[12641]: (root) CMD (run-parts /etc/cron.hourly)
Oct 11 19:01:01 Inblr-bislinux1 crond(pam_unix)[12640]: session closed for user root
Oct 11 19:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 19:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 19:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 19:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12650
Oct 11 19:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12650, sig 0 (0), stat 0
Oct 11 19:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12650 finished, switching from 2 to 1
Oct 11 19:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 19:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 19:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 19:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 19:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 19:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12651
Oct 11 19:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12651, sig 0 (0), stat 0
Oct 11 19:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12651 finished, switching from 2 to 1
Oct 11 19:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 19:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 19:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 19:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 19:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 19:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12654
Oct 11 19:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12654, sig 0 (0), stat 0
Oct 11 19:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12654 finished, switching from 2 to 1
Oct 11 19:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 19:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 19:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 19:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 19:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 19:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12655
Oct 11 19:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12655, sig 0 (0), stat 0
Oct 11 19:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12655 finished, switching from 2 to 1
Oct 11 19:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 19:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 20:01:01 Inblr-bislinux1 crond(pam_unix)[12656]: session opened for user root by (uid=0)
Oct 11 20:01:01 Inblr-bislinux1 crond[12657]: (root) CMD (run-parts /etc/cron.hourly)
Oct 11 20:01:01 Inblr-bislinux1 crond(pam_unix)[12656]: session closed for user root
Oct 11 20:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 20:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 20:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 20:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12666
Oct 11 20:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12666, sig 0 (0), stat 0
Oct 11 20:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12666 finished, switching from 2 to 1
Oct 11 20:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 20:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 20:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 20:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 20:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 20:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12667
Oct 11 20:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12667, sig 0 (0), stat 0
Oct 11 20:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12667 finished, switching from 2 to 1
Oct 11 20:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 20:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 20:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 20:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 20:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 20:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12670
Oct 11 20:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12670, sig 0 (0), stat 0
Oct 11 20:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12670 finished, switching from 2 to 1
Oct 11 20:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 20:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 20:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 20:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 20:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 20:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12671
Oct 11 20:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12671, sig 0 (0), stat 0
Oct 11 20:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12671 finished, switching from 2 to 1
Oct 11 20:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 20:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 21:01:01 Inblr-bislinux1 crond(pam_unix)[12672]: session opened for user root by (uid=0)
Oct 11 21:01:01 Inblr-bislinux1 crond[12673]: (root) CMD (run-parts /etc/cron.hourly)
Oct 11 21:01:01 Inblr-bislinux1 crond(pam_unix)[12672]: session closed for user root
Oct 11 21:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 21:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 21:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 21:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12682
Oct 11 21:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12682, sig 0 (0), stat 0
Oct 11 21:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12682 finished, switching from 2 to 1
Oct 11 21:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 21:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 21:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 21:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 21:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 21:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12683
Oct 11 21:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12683, sig 0 (0), stat 0
Oct 11 21:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12683 finished, switching from 2 to 1
Oct 11 21:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 21:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 21:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 21:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 21:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 21:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12686
Oct 11 21:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12686, sig 0 (0), stat 0
Oct 11 21:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12686 finished, switching from 2 to 1
Oct 11 21:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 21:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 21:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 21:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 21:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 21:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12687
Oct 11 21:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12687, sig 0 (0), stat 0
Oct 11 21:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12687 finished, switching from 2 to 1
Oct 11 21:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 21:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 22:01:01 Inblr-bislinux1 crond(pam_unix)[12688]: session opened for user root by (uid=0)
Oct 11 22:01:01 Inblr-bislinux1 crond[12689]: (root) CMD (run-parts /etc/cron.hourly)
Oct 11 22:01:01 Inblr-bislinux1 crond(pam_unix)[12688]: session closed for user root
Oct 11 22:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 22:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 22:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 22:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12698
Oct 11 22:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12698, sig 0 (0), stat 0
Oct 11 22:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12698 finished, switching from 2 to 1
Oct 11 22:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 22:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 22:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 22:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 22:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 22:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12699
Oct 11 22:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12699, sig 0 (0), stat 0
Oct 11 22:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12699 finished, switching from 2 to 1
Oct 11 22:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 22:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 22:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 22:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 22:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 22:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12702
Oct 11 22:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12702, sig 0 (0), stat 0
Oct 11 22:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12702 finished, switching from 2 to 1
Oct 11 22:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 22:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 22:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 22:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 22:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 22:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12703
Oct 11 22:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12703, sig 0 (0), stat 0
Oct 11 22:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12703 finished, switching from 2 to 1
Oct 11 22:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 22:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 23:01:01 Inblr-bislinux1 crond(pam_unix)[12704]: session opened for user root by (uid=0)
Oct 11 23:01:01 Inblr-bislinux1 crond[12705]: (root) CMD (run-parts /etc/cron.hourly)
Oct 11 23:01:01 Inblr-bislinux1 crond(pam_unix)[12704]: session closed for user root
Oct 11 23:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 23:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 23:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 23:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12714
Oct 11 23:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12714, sig 0 (0), stat 0
Oct 11 23:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12714 finished, switching from 2 to 1
Oct 11 23:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 23:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 23:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 23:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 23:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 23:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12715
Oct 11 23:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12715, sig 0 (0), stat 0
Oct 11 23:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12715 finished, switching from 2 to 1
Oct 11 23:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 23:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 23:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 23:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 23:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 23:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12718
Oct 11 23:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12718, sig 0 (0), stat 0
Oct 11 23:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12718 finished, switching from 2 to 1
Oct 11 23:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 23:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 23:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 23:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 23:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 23:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12719
Oct 11 23:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12719, sig 0 (0), stat 0
Oct 11 23:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12719 finished, switching from 2 to 1
Oct 11 23:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 23:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 00:01:01 Inblr-bislinux1 crond(pam_unix)[12720]: session opened for user root by (uid=0)
Oct 12 00:01:01 Inblr-bislinux1 crond[12721]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 00:01:01 Inblr-bislinux1 crond(pam_unix)[12720]: session closed for user root
Oct 12 00:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 00:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 00:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 00:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12730
Oct 12 00:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12730, sig 0 (0), stat 0
Oct 12 00:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12730 finished, switching from 2 to 1
Oct 12 00:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 00:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 00:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 00:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 00:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 00:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12731
Oct 12 00:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12731, sig 0 (0), stat 0
Oct 12 00:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12731 finished, switching from 2 to 1
Oct 12 00:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 00:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 00:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 00:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 00:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 00:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12734
Oct 12 00:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12734, sig 0 (0), stat 0
Oct 12 00:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12734 finished, switching from 2 to 1
Oct 12 00:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 00:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 00:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 00:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 00:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 00:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12735
Oct 12 00:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12735, sig 0 (0), stat 0
Oct 12 00:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12735 finished, switching from 2 to 1
Oct 12 00:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 00:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 01:01:01 Inblr-bislinux1 crond(pam_unix)[12736]: session opened for user root by (uid=0)
Oct 12 01:01:01 Inblr-bislinux1 crond[12737]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 01:01:01 Inblr-bislinux1 crond(pam_unix)[12736]: session closed for user root
Oct 12 01:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 01:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 01:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 01:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12746
Oct 12 01:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12746, sig 0 (0), stat 0
Oct 12 01:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12746 finished, switching from 2 to 1
Oct 12 01:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 01:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 01:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 01:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 01:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 01:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12747
Oct 12 01:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12747, sig 0 (0), stat 0
Oct 12 01:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12747 finished, switching from 2 to 1
Oct 12 01:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 01:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 01:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 01:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 01:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 01:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12750
Oct 12 01:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12750, sig 0 (0), stat 0
Oct 12 01:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12750 finished, switching from 2 to 1
Oct 12 01:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 01:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 01:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 01:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 01:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 01:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12751
Oct 12 01:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12751, sig 0 (0), stat 0
Oct 12 01:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12751 finished, switching from 2 to 1
Oct 12 01:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 01:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 02:01:01 Inblr-bislinux1 crond(pam_unix)[12752]: session opened for user root by (uid=0)
Oct 12 02:01:01 Inblr-bislinux1 crond[12753]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 02:01:01 Inblr-bislinux1 crond(pam_unix)[12752]: session closed for user root
Oct 12 02:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 02:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 02:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 02:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12762
Oct 12 02:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12762, sig 0 (0), stat 0
Oct 12 02:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12762 finished, switching from 2 to 1
Oct 12 02:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 02:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 02:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 02:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 02:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 02:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12763
Oct 12 02:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12763, sig 0 (0), stat 0
Oct 12 02:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12763 finished, switching from 2 to 1
Oct 12 02:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 02:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 02:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 02:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 02:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 02:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12766
Oct 12 02:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12766, sig 0 (0), stat 0
Oct 12 02:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12766 finished, switching from 2 to 1
Oct 12 02:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 02:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 02:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 02:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 02:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 02:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12767
Oct 12 02:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12767, sig 0 (0), stat 0
Oct 12 02:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12767 finished, switching from 2 to 1
Oct 12 02:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 02:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 03:01:01 Inblr-bislinux1 crond(pam_unix)[12768]: session opened for user root by (uid=0)
Oct 12 03:01:01 Inblr-bislinux1 crond[12769]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 03:01:01 Inblr-bislinux1 crond(pam_unix)[12768]: session closed for user root
Oct 12 03:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 03:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 03:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 03:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12778
Oct 12 03:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12778, sig 0 (0), stat 0
Oct 12 03:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12778 finished, switching from 2 to 1
Oct 12 03:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 03:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 03:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 03:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 03:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 03:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12779
Oct 12 03:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12779, sig 0 (0), stat 0
Oct 12 03:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12779 finished, switching from 2 to 1
Oct 12 03:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 03:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 03:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 03:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 03:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 03:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12782
Oct 12 03:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12782, sig 0 (0), stat 0
Oct 12 03:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12782 finished, switching from 2 to 1
Oct 12 03:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 03:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 03:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 03:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 03:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 03:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12783
Oct 12 03:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12783, sig 0 (0), stat 0
Oct 12 03:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12783 finished, switching from 2 to 1
Oct 12 03:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 03:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 04:01:01 Inblr-bislinux1 crond(pam_unix)[12784]: session opened for user root by (uid=0)
Oct 12 04:01:01 Inblr-bislinux1 crond[12785]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 04:01:01 Inblr-bislinux1 crond(pam_unix)[12784]: session closed for user root
Oct 12 04:02:01 Inblr-bislinux1 crond(pam_unix)[12794]: session opened for user root by (uid=0)
Oct 12 04:02:01 Inblr-bislinux1 crond[12795]: (root) CMD (run-parts /etc/cron.daily)
Oct 12 04:02:16 Inblr-bislinux1 sendmail[13126]: j9BN2Gtv013126: from=root, size=2543, class=0, nrcpts=1, msgid=<200510112302.j9BN2Gtv013126@localhost.localdomain>, relay=root@localhost
Oct 12 04:02:16 Inblr-bislinux1 sendmail[13128]: warning: /etc/hosts.allow, line 7: missing ":" separator
Oct 12 04:02:16 Inblr-bislinux1 sendmail[13128]: j9BN2G2e013128: from=<root@localhost.localdomain>, size=2849, class=0, nrcpts=1, msgid=<200510112302.j9BN2Gtv013126@localhost.localdomain>, proto=ESMTP, daemon=MTA, relay=localhost.localdomain [127.0.0.1]
Oct 12 04:02:16 Inblr-bislinux1 sendmail[13126]: j9BN2Gtv013126: to=root, ctladdr=root (0/0), delay=00:00:00, xdelay=00:00:00, mailer=relay, pri=32543, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (j9BN2G2e013128 Message accepted for delivery)
Oct 12 04:02:16 Inblr-bislinux1 sendmail[13129]: j9BN2G2e013128: to=<root@localhost.localdomain>, ctladdr=<root@localhost.localdomain> (0/0), delay=00:00:00, xdelay=00:00:00, mailer=local, pri=33086, dsn=2.0.0, stat=Sent
Oct 12 04:02:17 Inblr-bislinux1 anacron[13217]: Updated timestamp for job `cron.daily' to 2005-10-12
Oct 12 04:02:22 Inblr-bislinux1 crond(pam_unix)[12794]: session closed for user root
Oct 12 04:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 04:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 04:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 04:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13276
Oct 12 04:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13276, sig 0 (0), stat 0
Oct 12 04:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13276 finished, switching from 2 to 1
Oct 12 04:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 04:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 04:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 04:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 04:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 04:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13277
Oct 12 04:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13277, sig 0 (0), stat 0
Oct 12 04:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13277 finished, switching from 2 to 1
Oct 12 04:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 04:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 04:32:28 Inblr-bislinux1 automount[12507]: handle_packet: type = 0
Oct 12 04:32:28 Inblr-bislinux1 automount[12507]: handle_packet_missing: token 115, name Inblr-bislinux1.eu.uis.unisys.com
Oct 12 04:32:28 Inblr-bislinux1 automount[12507]: attempting to mount entry /net/Inblr-bislinux1.eu.uis.unisys.com
Oct 12 04:32:28 Inblr-bislinux1 automount[13302]: failed to mount /net/Inblr-bislinux1.eu.uis.unisys.com
Oct 12 04:32:28 Inblr-bislinux1 automount[13302]: umount_multi: path=/net/Inblr-bislinux1.eu.uis.unisys.com incl=1
Oct 12 04:32:28 Inblr-bislinux1 automount[12507]: handle_child: got pid 13302, sig 0 (0), stat 1
Oct 12 04:32:28 Inblr-bislinux1 automount[12507]: sig_child: found pending iop pid 13302: signalled 0 (sig 0), exit status 1
Oct 12 04:32:28 Inblr-bislinux1 automount[12507]: send_fail: token=115
Oct 12 04:32:28 Inblr-bislinux1 sendmail[13307]: j9BNWSrc013307: from=root, size=581, class=0, nrcpts=1, msgid=<200510112332.j9BNWSrc013307@localhost.localdomain>, relay=root@localhost
Oct 12 04:32:28 Inblr-bislinux1 sendmail[13308]: warning: /etc/hosts.allow, line 7: missing ":" separator
Oct 12 04:32:28 Inblr-bislinux1 sendmail[13308]: j9BNWSBN013308: from=<root@localhost.localdomain>, size=887, class=0, nrcpts=1, msgid=<200510112332.j9BNWSrc013307@localhost.localdomain>, proto=ESMTP, daemon=MTA, relay=localhost.localdomain [127.0.0.1]
Oct 12 04:32:28 Inblr-bislinux1 sendmail[13307]: j9BNWSrc013307: to=root, ctladdr=root (0/0), delay=00:00:00, xdelay=00:00:00, mailer=relay, pri=30581, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (j9BNWSBN013308 Message accepted for delivery)
Oct 12 04:32:28 Inblr-bislinux1 sendmail[13309]: j9BNWSBN013308: to=<root@localhost.localdomain>, ctladdr=<root@localhost.localdomain> (0/0), delay=00:00:00, xdelay=00:00:00, mailer=local, pri=31125, dsn=2.0.0, stat=Sent
Oct 12 04:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 04:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 04:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 04:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13311
Oct 12 04:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13311, sig 0 (0), stat 0
Oct 12 04:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13311 finished, switching from 2 to 1
Oct 12 04:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 04:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 04:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 04:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 04:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 04:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13312
Oct 12 04:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13312, sig 0 (0), stat 0
Oct 12 04:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13312 finished, switching from 2 to 1
Oct 12 04:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 04:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 05:01:01 Inblr-bislinux1 crond(pam_unix)[13313]: session opened for user root by (uid=0)
Oct 12 05:01:01 Inblr-bislinux1 crond[13314]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 05:01:01 Inblr-bislinux1 crond(pam_unix)[13313]: session closed for user root
Oct 12 05:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 05:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 05:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 05:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13323
Oct 12 05:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13323, sig 0 (0), stat 0
Oct 12 05:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13323 finished, switching from 2 to 1
Oct 12 05:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 05:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 05:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 05:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 05:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 05:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13324
Oct 12 05:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13324, sig 0 (0), stat 0
Oct 12 05:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13324 finished, switching from 2 to 1
Oct 12 05:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 05:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 05:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 05:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 05:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 05:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13327
Oct 12 05:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13327, sig 0 (0), stat 0
Oct 12 05:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13327 finished, switching from 2 to 1
Oct 12 05:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 05:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 05:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 05:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 05:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 05:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13328
Oct 12 05:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13328, sig 0 (0), stat 0
Oct 12 05:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13328 finished, switching from 2 to 1
Oct 12 05:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 05:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 06:01:01 Inblr-bislinux1 crond(pam_unix)[13329]: session opened for user root by (uid=0)
Oct 12 06:01:01 Inblr-bislinux1 crond[13330]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 06:01:01 Inblr-bislinux1 crond(pam_unix)[13329]: session closed for user root
Oct 12 06:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 06:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 06:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 06:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13339
Oct 12 06:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13339, sig 0 (0), stat 0
Oct 12 06:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13339 finished, switching from 2 to 1
Oct 12 06:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 06:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 06:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 06:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 06:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 06:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13340
Oct 12 06:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13340, sig 0 (0), stat 0
Oct 12 06:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13340 finished, switching from 2 to 1
Oct 12 06:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 06:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 06:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 06:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 06:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 06:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13343
Oct 12 06:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13343, sig 0 (0), stat 0
Oct 12 06:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13343 finished, switching from 2 to 1
Oct 12 06:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 06:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 06:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 06:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 06:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 06:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13344
Oct 12 06:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13344, sig 0 (0), stat 0
Oct 12 06:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13344 finished, switching from 2 to 1
Oct 12 06:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 06:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 07:01:01 Inblr-bislinux1 crond(pam_unix)[13345]: session opened for user root by (uid=0)
Oct 12 07:01:01 Inblr-bislinux1 crond[13346]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 07:01:01 Inblr-bislinux1 crond(pam_unix)[13345]: session closed for user root
Oct 12 07:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 07:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 07:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 07:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13355
Oct 12 07:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13355, sig 0 (0), stat 0
Oct 12 07:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13355 finished, switching from 2 to 1
Oct 12 07:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 07:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 07:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 07:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 07:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 07:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13356
Oct 12 07:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13356, sig 0 (0), stat 0
Oct 12 07:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13356 finished, switching from 2 to 1
Oct 12 07:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 07:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 07:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 07:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 07:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 07:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13359
Oct 12 07:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13359, sig 0 (0), stat 0
Oct 12 07:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13359 finished, switching from 2 to 1
Oct 12 07:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 07:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 07:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 07:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 07:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 07:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13360
Oct 12 07:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13360, sig 0 (0), stat 0
Oct 12 07:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13360 finished, switching from 2 to 1
Oct 12 07:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 07:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 08:01:01 Inblr-bislinux1 crond(pam_unix)[13361]: session opened for user root by (uid=0)
Oct 12 08:01:01 Inblr-bislinux1 crond[13362]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 08:01:01 Inblr-bislinux1 crond(pam_unix)[13361]: session closed for user root
Oct 12 08:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 08:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 08:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 08:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13371
Oct 12 08:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13371, sig 0 (0), stat 0
Oct 12 08:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13371 finished, switching from 2 to 1
Oct 12 08:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 08:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 08:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 08:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 08:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 08:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13372
Oct 12 08:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13372, sig 0 (0), stat 0
Oct 12 08:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13372 finished, switching from 2 to 1
Oct 12 08:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 08:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 08:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 08:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 08:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 08:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13375
Oct 12 08:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13375, sig 0 (0), stat 0
Oct 12 08:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13375 finished, switching from 2 to 1
Oct 12 08:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 08:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 08:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 08:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 08:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 08:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13376
Oct 12 08:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13376, sig 0 (0), stat 0
Oct 12 08:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13376 finished, switching from 2 to 1
Oct 12 08:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 08:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 09:01:01 Inblr-bislinux1 crond(pam_unix)[13377]: session opened for user root by (uid=0)
Oct 12 09:01:01 Inblr-bislinux1 crond[13378]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 09:01:01 Inblr-bislinux1 crond(pam_unix)[13377]: session closed for user root
Oct 12 09:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 09:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 09:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 09:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13387
Oct 12 09:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13387, sig 0 (0), stat 0
Oct 12 09:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13387 finished, switching from 2 to 1
Oct 12 09:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 09:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 09:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 09:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 09:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 09:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13388
Oct 12 09:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13388, sig 0 (0), stat 0
Oct 12 09:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13388 finished, switching from 2 to 1
Oct 12 09:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 09:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 09:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 09:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 09:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 09:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13391
Oct 12 09:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13391, sig 0 (0), stat 0
Oct 12 09:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13391 finished, switching from 2 to 1
Oct 12 09:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 09:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 09:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 09:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 09:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 09:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13392
Oct 12 09:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13392, sig 0 (0), stat 0
Oct 12 09:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13392 finished, switching from 2 to 1
Oct 12 09:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 09:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 10:01:01 Inblr-bislinux1 crond(pam_unix)[13393]: session opened for user root by (uid=0)
Oct 12 10:01:01 Inblr-bislinux1 crond[13394]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 10:01:01 Inblr-bislinux1 crond(pam_unix)[13393]: session closed for user root
Oct 12 10:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 10:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 10:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 10:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13403
Oct 12 10:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13403, sig 0 (0), stat 0
Oct 12 10:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13403 finished, switching from 2 to 1
Oct 12 10:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 10:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 10:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 10:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 10:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 10:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13404
Oct 12 10:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13404, sig 0 (0), stat 0
Oct 12 10:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13404 finished, switching from 2 to 1
Oct 12 10:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 10:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 10:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 10:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 10:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 10:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13407
Oct 12 10:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13407, sig 0 (0), stat 0
Oct 12 10:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13407 finished, switching from 2 to 1
Oct 12 10:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 10:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 10:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 10:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 10:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 10:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13408
Oct 12 10:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13408, sig 0 (0), stat 0
Oct 12 10:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13408 finished, switching from 2 to 1
Oct 12 10:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 10:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 11:01:01 Inblr-bislinux1 crond(pam_unix)[13409]: session opened for user root by (uid=0)
Oct 12 11:01:01 Inblr-bislinux1 crond[13410]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 11:01:01 Inblr-bislinux1 crond(pam_unix)[13409]: session closed for user root
Oct 12 11:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 11:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 11:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 11:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13419
Oct 12 11:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13419, sig 0 (0), stat 0
Oct 12 11:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13419 finished, switching from 2 to 1
Oct 12 11:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 11:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 11:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 11:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 11:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 11:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13420
Oct 12 11:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13420, sig 0 (0), stat 0
Oct 12 11:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13420 finished, switching from 2 to 1
Oct 12 11:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 11:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 11:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 11:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 11:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 11:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13423
Oct 12 11:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13423, sig 0 (0), stat 0
Oct 12 11:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13423 finished, switching from 2 to 1
Oct 12 11:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 11:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 11:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 11:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 11:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 11:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13424
Oct 12 11:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13424, sig 0 (0), stat 0
Oct 12 11:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13424 finished, switching from 2 to 1
Oct 12 11:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 11:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 12:01:01 Inblr-bislinux1 crond(pam_unix)[13425]: session opened for user root by (uid=0)
Oct 12 12:01:01 Inblr-bislinux1 crond[13426]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 12:01:01 Inblr-bislinux1 crond(pam_unix)[13425]: session closed for user root
Oct 12 12:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 12:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 12:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 12:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13435
Oct 12 12:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13435, sig 0 (0), stat 0
Oct 12 12:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13435 finished, switching from 2 to 1
Oct 12 12:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 12:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 12:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 12:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 12:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 12:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13436
Oct 12 12:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13436, sig 0 (0), stat 0
Oct 12 12:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13436 finished, switching from 2 to 1
Oct 12 12:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 12:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 12:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 12:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 12:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 12:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13439
Oct 12 12:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13439, sig 0 (0), stat 0
Oct 12 12:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13439 finished, switching from 2 to 1
Oct 12 12:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 12:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 12:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 12:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 12:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 12:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13440
Oct 12 12:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13440, sig 0 (0), stat 0
Oct 12 12:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13440 finished, switching from 2 to 1
Oct 12 12:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 12:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 13:01:01 Inblr-bislinux1 crond(pam_unix)[13441]: session opened for user root by (uid=0)
Oct 12 13:01:01 Inblr-bislinux1 crond[13442]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 13:01:01 Inblr-bislinux1 crond(pam_unix)[13441]: session closed for user root
Oct 12 13:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 13:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 13:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 13:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13451
Oct 12 13:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13451, sig 0 (0), stat 0
Oct 12 13:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13451 finished, switching from 2 to 1
Oct 12 13:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 13:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 13:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 13:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 13:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 13:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13452
Oct 12 13:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13452, sig 0 (0), stat 0
Oct 12 13:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13452 finished, switching from 2 to 1
Oct 12 13:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 13:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 13:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 13:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 13:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 13:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13455
Oct 12 13:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13455, sig 0 (0), stat 0
Oct 12 13:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13455 finished, switching from 2 to 1
Oct 12 13:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 13:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 13:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 13:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 13:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 13:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13456
Oct 12 13:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13456, sig 0 (0), stat 0
Oct 12 13:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13456 finished, switching from 2 to 1
Oct 12 13:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 13:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 14:01:01 Inblr-bislinux1 crond(pam_unix)[13457]: session opened for user root by (uid=0)
Oct 12 14:01:01 Inblr-bislinux1 crond[13458]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 14:01:01 Inblr-bislinux1 crond(pam_unix)[13457]: session closed for user root
Oct 12 14:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 14:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 14:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 14:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13467
Oct 12 14:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13467, sig 0 (0), stat 0
Oct 12 14:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13467 finished, switching from 2 to 1
Oct 12 14:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 14:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 14:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 14:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 14:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 14:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13468
Oct 12 14:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13468, sig 0 (0), stat 0
Oct 12 14:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13468 finished, switching from 2 to 1
Oct 12 14:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 14:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 14:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 14:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 14:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 14:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13471
Oct 12 14:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13471, sig 0 (0), stat 0
Oct 12 14:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13471 finished, switching from 2 to 1
Oct 12 14:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 14:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 14:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 14:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 14:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 14:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13472
Oct 12 14:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13472, sig 0 (0), stat 0
Oct 12 14:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13472 finished, switching from 2 to 1
Oct 12 14:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 14:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 15:01:01 Inblr-bislinux1 crond(pam_unix)[13473]: session opened for user root by (uid=0)
Oct 12 15:01:01 Inblr-bislinux1 crond[13474]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 15:01:01 Inblr-bislinux1 crond(pam_unix)[13473]: session closed for user root
Oct 12 15:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 15:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 15:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 15:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13483
Oct 12 15:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13483, sig 0 (0), stat 0
Oct 12 15:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13483 finished, switching from 2 to 1
Oct 12 15:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 15:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 15:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 15:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 15:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 15:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13484
Oct 12 15:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13484, sig 0 (0), stat 0
Oct 12 15:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13484 finished, switching from 2 to 1
Oct 12 15:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 15:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 15:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 15:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 15:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 15:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13487
Oct 12 15:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13487, sig 0 (0), stat 0
Oct 12 15:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13487 finished, switching from 2 to 1
Oct 12 15:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 15:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 15:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 15:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 15:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 15:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13488
Oct 12 15:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13488, sig 0 (0), stat 0
Oct 12 15:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13488 finished, switching from 2 to 1
Oct 12 15:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 15:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 16:01:01 Inblr-bislinux1 crond(pam_unix)[13489]: session opened for user root by (uid=0)
Oct 12 16:01:01 Inblr-bislinux1 crond[13490]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 16:01:01 Inblr-bislinux1 crond(pam_unix)[13489]: session closed for user root
Oct 12 16:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 16:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 16:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 16:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13499
Oct 12 16:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13499, sig 0 (0), stat 0
Oct 12 16:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13499 finished, switching from 2 to 1
Oct 12 16:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 16:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 16:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 16:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 16:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 16:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13500
Oct 12 16:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13500, sig 0 (0), stat 0
Oct 12 16:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13500 finished, switching from 2 to 1
Oct 12 16:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 16:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 16:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 16:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 16:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 16:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13503
Oct 12 16:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13503, sig 0 (0), stat 0
Oct 12 16:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13503 finished, switching from 2 to 1
Oct 12 16:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 16:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 16:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 16:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 16:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 16:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13504
Oct 12 16:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13504, sig 0 (0), stat 0
Oct 12 16:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13504 finished, switching from 2 to 1
Oct 12 16:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 16:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 17:01:01 Inblr-bislinux1 crond(pam_unix)[13505]: session opened for user root by (uid=0)
Oct 12 17:01:01 Inblr-bislinux1 crond[13506]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 17:01:01 Inblr-bislinux1 crond(pam_unix)[13505]: session closed for user root
Oct 12 17:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 17:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 17:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 17:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13515
Oct 12 17:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13515, sig 0 (0), stat 0
Oct 12 17:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13515 finished, switching from 2 to 1
Oct 12 17:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 17:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 17:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 17:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 17:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 17:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13516
Oct 12 17:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13516, sig 0 (0), stat 0
Oct 12 17:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13516 finished, switching from 2 to 1
Oct 12 17:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 17:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 17:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 17:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 17:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 17:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13519
Oct 12 17:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13519, sig 0 (0), stat 0
Oct 12 17:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13519 finished, switching from 2 to 1
Oct 12 17:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 17:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 17:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 17:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 17:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 17:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13520
Oct 12 17:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13520, sig 0 (0), stat 0
Oct 12 17:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13520 finished, switching from 2 to 1
Oct 12 17:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 17:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 18:01:01 Inblr-bislinux1 crond(pam_unix)[13521]: session opened for user root by (uid=0)
Oct 12 18:01:01 Inblr-bislinux1 crond[13522]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 18:01:01 Inblr-bislinux1 crond(pam_unix)[13521]: session closed for user root
Oct 12 18:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 18:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 18:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 18:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13531
Oct 12 18:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13531, sig 0 (0), stat 0
Oct 12 18:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13531 finished, switching from 2 to 1
Oct 12 18:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 18:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 18:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 18:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 18:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 18:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13532
Oct 12 18:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13532, sig 0 (0), stat 0
Oct 12 18:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13532 finished, switching from 2 to 1
Oct 12 18:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 18:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 18:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 18:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 18:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 18:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13535
Oct 12 18:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13535, sig 0 (0), stat 0
Oct 12 18:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13535 finished, switching from 2 to 1
Oct 12 18:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 18:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 18:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 18:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 18:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 18:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13536
Oct 12 18:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13536, sig 0 (0), stat 0
Oct 12 18:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13536 finished, switching from 2 to 1
Oct 12 18:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 18:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 19:01:01 Inblr-bislinux1 crond(pam_unix)[13537]: session opened for user root by (uid=0)
Oct 12 19:01:01 Inblr-bislinux1 crond[13538]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 19:01:01 Inblr-bislinux1 crond(pam_unix)[13537]: session closed for user root
Oct 12 19:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 19:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 19:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 19:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13547
Oct 12 19:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13547, sig 0 (0), stat 0
Oct 12 19:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13547 finished, switching from 2 to 1
Oct 12 19:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 19:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 19:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 19:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 19:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 19:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13548
Oct 12 19:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13548, sig 0 (0), stat 0
Oct 12 19:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13548 finished, switching from 2 to 1
Oct 12 19:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 19:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 19:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 19:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 19:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 19:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13551
Oct 12 19:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13551, sig 0 (0), stat 0
Oct 12 19:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13551 finished, switching from 2 to 1
Oct 12 19:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 19:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 19:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 19:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 19:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 19:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13552
Oct 12 19:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13552, sig 0 (0), stat 0
Oct 12 19:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13552 finished, switching from 2 to 1
Oct 12 19:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 19:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 20:01:01 Inblr-bislinux1 crond(pam_unix)[13553]: session opened for user root by (uid=0)
Oct 12 20:01:01 Inblr-bislinux1 crond[13554]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 20:01:01 Inblr-bislinux1 crond(pam_unix)[13553]: session closed for user root
Oct 12 20:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 20:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 20:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 20:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13563
Oct 12 20:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13563, sig 0 (0), stat 0
Oct 12 20:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13563 finished, switching from 2 to 1
Oct 12 20:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 20:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 20:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 20:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 20:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 20:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13564
Oct 12 20:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13564, sig 0 (0), stat 0
Oct 12 20:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13564 finished, switching from 2 to 1
Oct 12 20:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 20:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 20:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 20:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 20:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 20:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13567
Oct 12 20:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13567, sig 0 (0), stat 0
Oct 12 20:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13567 finished, switching from 2 to 1
Oct 12 20:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 20:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 20:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 20:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 20:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 20:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13568
Oct 12 20:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13568, sig 0 (0), stat 0
Oct 12 20:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13568 finished, switching from 2 to 1
Oct 12 20:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 20:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 21:01:01 Inblr-bislinux1 crond(pam_unix)[13569]: session opened for user root by (uid=0)
Oct 12 21:01:01 Inblr-bislinux1 crond[13570]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 21:01:01 Inblr-bislinux1 crond(pam_unix)[13569]: session closed for user root
Oct 12 21:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 21:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 21:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 21:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13579
Oct 12 21:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13579, sig 0 (0), stat 0
Oct 12 21:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13579 finished, switching from 2 to 1
Oct 12 21:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 21:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 21:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 21:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 21:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 21:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13580
Oct 12 21:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13580, sig 0 (0), stat 0
Oct 12 21:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13580 finished, switching from 2 to 1
Oct 12 21:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 21:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 21:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 21:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 21:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 21:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13583
Oct 12 21:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13583, sig 0 (0), stat 0
Oct 12 21:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13583 finished, switching from 2 to 1
Oct 12 21:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 21:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 21:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 21:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 21:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 21:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13584
Oct 12 21:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13584, sig 0 (0), stat 0
Oct 12 21:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13584 finished, switching from 2 to 1
Oct 12 21:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 21:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 22:01:01 Inblr-bislinux1 crond(pam_unix)[13585]: session opened for user root by (uid=0)
Oct 12 22:01:01 Inblr-bislinux1 crond[13586]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 22:01:01 Inblr-bislinux1 crond(pam_unix)[13585]: session closed for user root
Oct 12 22:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 22:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 22:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 22:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13595
Oct 12 22:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13595, sig 0 (0), stat 0
Oct 12 22:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13595 finished, switching from 2 to 1
Oct 12 22:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 22:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 22:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 22:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 22:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 22:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13596
Oct 12 22:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13596, sig 0 (0), stat 0
Oct 12 22:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13596 finished, switching from 2 to 1
Oct 12 22:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 22:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 22:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 22:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 22:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 22:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13599
Oct 12 22:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13599, sig 0 (0), stat 0
Oct 12 22:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13599 finished, switching from 2 to 1
Oct 12 22:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 22:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 22:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 22:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 22:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 22:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13600
Oct 12 22:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13600, sig 0 (0), stat 0
Oct 12 22:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13600 finished, switching from 2 to 1
Oct 12 22:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 22:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 23:01:01 Inblr-bislinux1 crond(pam_unix)[13601]: session opened for user root by (uid=0)
Oct 12 23:01:01 Inblr-bislinux1 crond[13602]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 23:01:01 Inblr-bislinux1 crond(pam_unix)[13601]: session closed for user root
Oct 12 23:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 23:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 23:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 23:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13611
Oct 12 23:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13611, sig 0 (0), stat 0
Oct 12 23:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13611 finished, switching from 2 to 1
Oct 12 23:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 23:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 23:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 23:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 23:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 23:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13612
Oct 12 23:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13612, sig 0 (0), stat 0
Oct 12 23:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13612 finished, switching from 2 to 1
Oct 12 23:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 23:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 23:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 23:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 23:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 23:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13615
Oct 12 23:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13615, sig 0 (0), stat 0
Oct 12 23:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13615 finished, switching from 2 to 1
Oct 12 23:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 23:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 23:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 23:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 23:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 23:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13616
Oct 12 23:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13616, sig 0 (0), stat 0
Oct 12 23:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13616 finished, switching from 2 to 1
Oct 12 23:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 23:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 00:01:01 Inblr-bislinux1 crond(pam_unix)[13617]: session opened for user root by (uid=0)
Oct 13 00:01:01 Inblr-bislinux1 crond[13618]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 00:01:01 Inblr-bislinux1 crond(pam_unix)[13617]: session closed for user root
Oct 13 00:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 00:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 00:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 00:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13627
Oct 13 00:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13627, sig 0 (0), stat 0
Oct 13 00:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13627 finished, switching from 2 to 1
Oct 13 00:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 00:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 00:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 00:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 00:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 00:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13628
Oct 13 00:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13628, sig 0 (0), stat 0
Oct 13 00:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13628 finished, switching from 2 to 1
Oct 13 00:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 00:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 00:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 00:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 00:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 00:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13631
Oct 13 00:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13631, sig 0 (0), stat 0
Oct 13 00:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13631 finished, switching from 2 to 1
Oct 13 00:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 00:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 00:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 00:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 00:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 00:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13632
Oct 13 00:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13632, sig 0 (0), stat 0
Oct 13 00:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13632 finished, switching from 2 to 1
Oct 13 00:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 00:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 01:01:01 Inblr-bislinux1 crond(pam_unix)[13633]: session opened for user root by (uid=0)
Oct 13 01:01:01 Inblr-bislinux1 crond[13634]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 01:01:01 Inblr-bislinux1 crond(pam_unix)[13633]: session closed for user root
Oct 13 01:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 01:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 01:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 01:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13643
Oct 13 01:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13643, sig 0 (0), stat 0
Oct 13 01:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13643 finished, switching from 2 to 1
Oct 13 01:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 01:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 01:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 01:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 01:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 01:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13644
Oct 13 01:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13644, sig 0 (0), stat 0
Oct 13 01:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13644 finished, switching from 2 to 1
Oct 13 01:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 01:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 01:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 01:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 01:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 01:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13647
Oct 13 01:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13647, sig 0 (0), stat 0
Oct 13 01:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13647 finished, switching from 2 to 1
Oct 13 01:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 01:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 01:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 01:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 01:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 01:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13648
Oct 13 01:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13648, sig 0 (0), stat 0
Oct 13 01:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13648 finished, switching from 2 to 1
Oct 13 01:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 01:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 02:01:01 Inblr-bislinux1 crond(pam_unix)[13649]: session opened for user root by (uid=0)
Oct 13 02:01:01 Inblr-bislinux1 crond[13650]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 02:01:01 Inblr-bislinux1 crond(pam_unix)[13649]: session closed for user root
Oct 13 02:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 02:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 02:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 02:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13659
Oct 13 02:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13659, sig 0 (0), stat 0
Oct 13 02:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13659 finished, switching from 2 to 1
Oct 13 02:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 02:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 02:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 02:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 02:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 02:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13660
Oct 13 02:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13660, sig 0 (0), stat 0
Oct 13 02:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13660 finished, switching from 2 to 1
Oct 13 02:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 02:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 02:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 02:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 02:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 02:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13663
Oct 13 02:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13663, sig 0 (0), stat 0
Oct 13 02:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13663 finished, switching from 2 to 1
Oct 13 02:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 02:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 02:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 02:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 02:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 02:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13664
Oct 13 02:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13664, sig 0 (0), stat 0
Oct 13 02:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13664 finished, switching from 2 to 1
Oct 13 02:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 02:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 03:01:01 Inblr-bislinux1 crond(pam_unix)[13665]: session opened for user root by (uid=0)
Oct 13 03:01:01 Inblr-bislinux1 crond[13666]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 03:01:01 Inblr-bislinux1 crond(pam_unix)[13665]: session closed for user root
Oct 13 03:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 03:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 03:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 03:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13675
Oct 13 03:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13675, sig 0 (0), stat 0
Oct 13 03:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13675 finished, switching from 2 to 1
Oct 13 03:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 03:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 03:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 03:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 03:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 03:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13676
Oct 13 03:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13676, sig 0 (0), stat 0
Oct 13 03:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13676 finished, switching from 2 to 1
Oct 13 03:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 03:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 03:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 03:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 03:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 03:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13679
Oct 13 03:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13679, sig 0 (0), stat 0
Oct 13 03:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13679 finished, switching from 2 to 1
Oct 13 03:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 03:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 03:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 03:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 03:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 03:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13680
Oct 13 03:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13680, sig 0 (0), stat 0
Oct 13 03:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13680 finished, switching from 2 to 1
Oct 13 03:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 03:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 04:01:01 Inblr-bislinux1 crond(pam_unix)[13681]: session opened for user root by (uid=0)
Oct 13 04:01:01 Inblr-bislinux1 crond[13682]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 04:01:01 Inblr-bislinux1 crond(pam_unix)[13681]: session closed for user root
Oct 13 04:02:01 Inblr-bislinux1 crond(pam_unix)[13691]: session opened for user root by (uid=0)
Oct 13 04:02:01 Inblr-bislinux1 crond[13692]: (root) CMD (run-parts /etc/cron.daily)
Oct 13 04:02:16 Inblr-bislinux1 sendmail[14003]: j9CN2GaN014003: from=root, size=1414, class=0, nrcpts=1, msgid=<200510122302.j9CN2GaN014003@localhost.localdomain>, relay=root@localhost
Oct 13 04:02:16 Inblr-bislinux1 sendmail[14005]: warning: /etc/hosts.allow, line 7: missing ":" separator
Oct 13 04:02:16 Inblr-bislinux1 sendmail[14005]: j9CN2G04014005: from=<root@localhost.localdomain>, size=1720, class=0, nrcpts=1, msgid=<200510122302.j9CN2GaN014003@localhost.localdomain>, proto=ESMTP, daemon=MTA, relay=localhost.localdomain [127.0.0.1]
Oct 13 04:02:16 Inblr-bislinux1 sendmail[14003]: j9CN2GaN014003: to=root, ctladdr=root (0/0), delay=00:00:00, xdelay=00:00:00, mailer=relay, pri=31414, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (j9CN2G04014005 Message accepted for delivery)
Oct 13 04:02:16 Inblr-bislinux1 sendmail[14006]: j9CN2G04014005: to=<root@localhost.localdomain>, ctladdr=<root@localhost.localdomain> (0/0), delay=00:00:00, xdelay=00:00:00, mailer=local, pri=31957, dsn=2.0.0, stat=Sent
Oct 13 04:02:17 Inblr-bislinux1 anacron[14094]: Updated timestamp for job `cron.daily' to 2005-10-13
Oct 13 04:02:21 Inblr-bislinux1 crond(pam_unix)[13691]: session closed for user root
Oct 13 04:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 04:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 04:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 04:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14153
Oct 13 04:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14153, sig 0 (0), stat 0
Oct 13 04:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14153 finished, switching from 2 to 1
Oct 13 04:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 04:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 04:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 04:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 04:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 04:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14154
Oct 13 04:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14154, sig 0 (0), stat 0
Oct 13 04:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14154 finished, switching from 2 to 1
Oct 13 04:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 04:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 04:32:16 Inblr-bislinux1 automount[12507]: handle_packet: type = 0
Oct 13 04:32:16 Inblr-bislinux1 automount[12507]: handle_packet_missing: token 116, name Inblr-bislinux1.eu.uis.unisys.com
Oct 13 04:32:16 Inblr-bislinux1 automount[12507]: attempting to mount entry /net/Inblr-bislinux1.eu.uis.unisys.com
Oct 13 04:32:16 Inblr-bislinux1 automount[14179]: failed to mount /net/Inblr-bislinux1.eu.uis.unisys.com
Oct 13 04:32:16 Inblr-bislinux1 automount[14179]: umount_multi: path=/net/Inblr-bislinux1.eu.uis.unisys.com incl=1
Oct 13 04:32:16 Inblr-bislinux1 automount[12507]: handle_child: got pid 14179, sig 0 (0), stat 1
Oct 13 04:32:16 Inblr-bislinux1 automount[12507]: sig_child: found pending iop pid 14179: signalled 0 (sig 0), exit status 1
Oct 13 04:32:16 Inblr-bislinux1 automount[12507]: send_fail: token=116
Oct 13 04:32:17 Inblr-bislinux1 sendmail[14184]: j9CNWGh8014184: from=root, size=581, class=0, nrcpts=1, msgid=<200510122332.j9CNWGh8014184@localhost.localdomain>, relay=root@localhost
Oct 13 04:32:17 Inblr-bislinux1 sendmail[14185]: warning: /etc/hosts.allow, line 7: missing ":" separator
Oct 13 04:32:17 Inblr-bislinux1 sendmail[14185]: j9CNWHvD014185: from=<root@localhost.localdomain>, size=887, class=0, nrcpts=1, msgid=<200510122332.j9CNWGh8014184@localhost.localdomain>, proto=ESMTP, daemon=MTA, relay=localhost.localdomain [127.0.0.1]
Oct 13 04:32:17 Inblr-bislinux1 sendmail[14184]: j9CNWGh8014184: to=root, ctladdr=root (0/0), delay=00:00:01, xdelay=00:00:00, mailer=relay, pri=30581, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (j9CNWHvD014185 Message accepted for delivery)
Oct 13 04:32:17 Inblr-bislinux1 sendmail[14186]: j9CNWHvD014185: to=<root@localhost.localdomain>, ctladdr=<root@localhost.localdomain> (0/0), delay=00:00:00, xdelay=00:00:00, mailer=local, pri=31125, dsn=2.0.0, stat=Sent
Oct 13 04:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 04:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 04:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 04:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14188
Oct 13 04:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14188, sig 0 (0), stat 0
Oct 13 04:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14188 finished, switching from 2 to 1
Oct 13 04:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 04:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 04:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 04:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 04:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 04:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14189
Oct 13 04:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14189, sig 0 (0), stat 0
Oct 13 04:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14189 finished, switching from 2 to 1
Oct 13 04:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 04:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 05:01:01 Inblr-bislinux1 crond(pam_unix)[14190]: session opened for user root by (uid=0)
Oct 13 05:01:01 Inblr-bislinux1 crond[14191]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 05:01:01 Inblr-bislinux1 crond(pam_unix)[14190]: session closed for user root
Oct 13 05:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 05:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 05:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 05:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14200
Oct 13 05:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14200, sig 0 (0), stat 0
Oct 13 05:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14200 finished, switching from 2 to 1
Oct 13 05:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 05:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 05:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 05:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 05:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 05:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14201
Oct 13 05:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14201, sig 0 (0), stat 0
Oct 13 05:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14201 finished, switching from 2 to 1
Oct 13 05:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 05:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 05:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 05:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 05:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 05:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14204
Oct 13 05:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14204, sig 0 (0), stat 0
Oct 13 05:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14204 finished, switching from 2 to 1
Oct 13 05:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 05:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 05:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 05:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 05:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 05:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14205
Oct 13 05:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14205, sig 0 (0), stat 0
Oct 13 05:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14205 finished, switching from 2 to 1
Oct 13 05:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 05:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 06:01:01 Inblr-bislinux1 crond(pam_unix)[14206]: session opened for user root by (uid=0)
Oct 13 06:01:01 Inblr-bislinux1 crond[14207]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 06:01:01 Inblr-bislinux1 crond(pam_unix)[14206]: session closed for user root
Oct 13 06:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 06:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 06:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 06:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14216
Oct 13 06:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14216, sig 0 (0), stat 0
Oct 13 06:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14216 finished, switching from 2 to 1
Oct 13 06:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 06:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 06:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 06:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 06:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 06:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14217
Oct 13 06:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14217, sig 0 (0), stat 0
Oct 13 06:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14217 finished, switching from 2 to 1
Oct 13 06:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 06:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 06:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 06:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 06:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 06:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14220
Oct 13 06:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14220, sig 0 (0), stat 0
Oct 13 06:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14220 finished, switching from 2 to 1
Oct 13 06:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 06:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 06:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 06:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 06:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 06:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14221
Oct 13 06:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14221, sig 0 (0), stat 0
Oct 13 06:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14221 finished, switching from 2 to 1
Oct 13 06:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 06:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 07:01:01 Inblr-bislinux1 crond(pam_unix)[14222]: session opened for user root by (uid=0)
Oct 13 07:01:01 Inblr-bislinux1 crond[14223]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 07:01:01 Inblr-bislinux1 crond(pam_unix)[14222]: session closed for user root
Oct 13 07:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 07:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 07:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 07:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14232
Oct 13 07:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14232, sig 0 (0), stat 0
Oct 13 07:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14232 finished, switching from 2 to 1
Oct 13 07:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 07:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 07:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 07:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 07:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 07:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14233
Oct 13 07:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14233, sig 0 (0), stat 0
Oct 13 07:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14233 finished, switching from 2 to 1
Oct 13 07:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 07:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 07:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 07:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 07:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 07:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14236
Oct 13 07:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14236, sig 0 (0), stat 0
Oct 13 07:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14236 finished, switching from 2 to 1
Oct 13 07:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 07:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 07:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 07:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 07:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 07:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14237
Oct 13 07:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14237, sig 0 (0), stat 0
Oct 13 07:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14237 finished, switching from 2 to 1
Oct 13 07:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 07:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 08:01:01 Inblr-bislinux1 crond(pam_unix)[14238]: session opened for user root by (uid=0)
Oct 13 08:01:01 Inblr-bislinux1 crond[14239]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 08:01:01 Inblr-bislinux1 crond(pam_unix)[14238]: session closed for user root
Oct 13 08:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 08:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 08:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 08:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14248
Oct 13 08:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14248, sig 0 (0), stat 0
Oct 13 08:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14248 finished, switching from 2 to 1
Oct 13 08:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 08:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 08:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 08:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 08:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 08:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14249
Oct 13 08:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14249, sig 0 (0), stat 0
Oct 13 08:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14249 finished, switching from 2 to 1
Oct 13 08:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 08:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 08:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 08:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 08:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 08:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14252
Oct 13 08:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14252, sig 0 (0), stat 0
Oct 13 08:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14252 finished, switching from 2 to 1
Oct 13 08:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 08:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 08:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 08:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 08:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 08:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14253
Oct 13 08:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14253, sig 0 (0), stat 0
Oct 13 08:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14253 finished, switching from 2 to 1
Oct 13 08:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 08:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 09:01:01 Inblr-bislinux1 crond(pam_unix)[14254]: session opened for user root by (uid=0)
Oct 13 09:01:01 Inblr-bislinux1 crond[14255]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 09:01:01 Inblr-bislinux1 crond(pam_unix)[14254]: session closed for user root
Oct 13 09:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 09:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 09:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 09:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14264
Oct 13 09:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14264, sig 0 (0), stat 0
Oct 13 09:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14264 finished, switching from 2 to 1
Oct 13 09:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 09:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 09:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 09:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 09:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 09:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14265
Oct 13 09:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14265, sig 0 (0), stat 0
Oct 13 09:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14265 finished, switching from 2 to 1
Oct 13 09:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 09:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 09:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 09:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 09:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 09:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14268
Oct 13 09:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14268, sig 0 (0), stat 0
Oct 13 09:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14268 finished, switching from 2 to 1
Oct 13 09:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 09:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 09:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 09:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 09:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 09:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14269
Oct 13 09:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14269, sig 0 (0), stat 0
Oct 13 09:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14269 finished, switching from 2 to 1
Oct 13 09:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 09:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 10:01:01 Inblr-bislinux1 crond(pam_unix)[14270]: session opened for user root by (uid=0)
Oct 13 10:01:01 Inblr-bislinux1 crond[14271]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 10:01:01 Inblr-bislinux1 crond(pam_unix)[14270]: session closed for user root
Oct 13 10:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 10:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 10:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 10:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14280
Oct 13 10:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14280, sig 0 (0), stat 0
Oct 13 10:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14280 finished, switching from 2 to 1
Oct 13 10:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 10:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 10:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 10:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 10:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 10:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14281
Oct 13 10:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14281, sig 0 (0), stat 0
Oct 13 10:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14281 finished, switching from 2 to 1
Oct 13 10:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 10:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 10:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 10:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 10:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 10:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14284
Oct 13 10:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14284, sig 0 (0), stat 0
Oct 13 10:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14284 finished, switching from 2 to 1
Oct 13 10:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 10:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 10:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 10:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 10:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 10:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14285
Oct 13 10:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14285, sig 0 (0), stat 0
Oct 13 10:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14285 finished, switching from 2 to 1
Oct 13 10:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 10:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 11:01:01 Inblr-bislinux1 crond(pam_unix)[14286]: session opened for user root by (uid=0)
Oct 13 11:01:01 Inblr-bislinux1 crond[14287]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 11:01:01 Inblr-bislinux1 crond(pam_unix)[14286]: session closed for user root
Oct 13 11:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 11:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 11:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 11:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14296
Oct 13 11:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14296, sig 0 (0), stat 0
Oct 13 11:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14296 finished, switching from 2 to 1
Oct 13 11:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 11:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 11:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 11:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 11:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 11:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14297
Oct 13 11:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14297, sig 0 (0), stat 0
Oct 13 11:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14297 finished, switching from 2 to 1
Oct 13 11:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 11:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 11:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 11:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 11:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 11:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14300
Oct 13 11:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14300, sig 0 (0), stat 0
Oct 13 11:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14300 finished, switching from 2 to 1
Oct 13 11:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 11:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 11:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 11:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 11:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 11:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14301
Oct 13 11:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14301, sig 0 (0), stat 0
Oct 13 11:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14301 finished, switching from 2 to 1
Oct 13 11:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 11:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 12:01:01 Inblr-bislinux1 crond(pam_unix)[14302]: session opened for user root by (uid=0)
Oct 13 12:01:01 Inblr-bislinux1 crond[14303]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 12:01:01 Inblr-bislinux1 crond(pam_unix)[14302]: session closed for user root
Oct 13 12:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 12:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 12:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 12:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14312
Oct 13 12:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14312, sig 0 (0), stat 0
Oct 13 12:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14312 finished, switching from 2 to 1
Oct 13 12:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 12:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 12:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 12:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 12:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 12:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14313
Oct 13 12:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14313, sig 0 (0), stat 0
Oct 13 12:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14313 finished, switching from 2 to 1
Oct 13 12:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 12:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 12:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 12:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 12:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 12:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14316
Oct 13 12:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14316, sig 0 (0), stat 0
Oct 13 12:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14316 finished, switching from 2 to 1
Oct 13 12:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 12:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 12:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 12:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 12:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 12:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14317
Oct 13 12:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14317, sig 0 (0), stat 0
Oct 13 12:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14317 finished, switching from 2 to 1
Oct 13 12:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 12:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 13:01:01 Inblr-bislinux1 crond(pam_unix)[14318]: session opened for user root by (uid=0)
Oct 13 13:01:01 Inblr-bislinux1 crond[14319]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 13:01:01 Inblr-bislinux1 crond(pam_unix)[14318]: session closed for user root
Oct 13 13:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 13:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 13:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 13:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14328
Oct 13 13:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14328, sig 0 (0), stat 0
Oct 13 13:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14328 finished, switching from 2 to 1
Oct 13 13:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 13:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 13:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 13:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 13:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 13:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14329
Oct 13 13:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14329, sig 0 (0), stat 0
Oct 13 13:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14329 finished, switching from 2 to 1
Oct 13 13:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 13:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 13:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 13:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 13:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 13:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14332
Oct 13 13:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14332, sig 0 (0), stat 0
Oct 13 13:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14332 finished, switching from 2 to 1
Oct 13 13:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 13:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 13:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 13:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 13:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 13:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14333
Oct 13 13:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14333, sig 0 (0), stat 0
Oct 13 13:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14333 finished, switching from 2 to 1
Oct 13 13:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 13:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 14:01:01 Inblr-bislinux1 crond(pam_unix)[14334]: session opened for user root by (uid=0)
Oct 13 14:01:01 Inblr-bislinux1 crond[14335]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 14:01:01 Inblr-bislinux1 crond(pam_unix)[14334]: session closed for user root
Oct 13 14:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 14:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 14:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 14:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14344
Oct 13 14:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14344, sig 0 (0), stat 0
Oct 13 14:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14344 finished, switching from 2 to 1
Oct 13 14:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 14:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 14:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 14:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 14:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 14:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14345
Oct 13 14:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14345, sig 0 (0), stat 0
Oct 13 14:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14345 finished, switching from 2 to 1
Oct 13 14:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 14:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 14:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 14:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 14:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 14:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14348
Oct 13 14:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14348, sig 0 (0), stat 0
Oct 13 14:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14348 finished, switching from 2 to 1
Oct 13 14:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 14:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 14:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 14:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 14:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 14:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14349
Oct 13 14:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14349, sig 0 (0), stat 0
Oct 13 14:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14349 finished, switching from 2 to 1
Oct 13 14:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 14:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 15:01:01 Inblr-bislinux1 crond(pam_unix)[14350]: session opened for user root by (uid=0)
Oct 13 15:01:01 Inblr-bislinux1 crond[14351]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 15:01:01 Inblr-bislinux1 crond(pam_unix)[14350]: session closed for user root
Oct 13 15:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 15:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 15:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 15:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14360
Oct 13 15:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14360, sig 0 (0), stat 0
Oct 13 15:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14360 finished, switching from 2 to 1
Oct 13 15:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 15:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 15:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 15:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 15:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 15:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14361
Oct 13 15:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14361, sig 0 (0), stat 0
Oct 13 15:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14361 finished, switching from 2 to 1
Oct 13 15:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 15:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 15:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 15:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 15:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 15:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14364
Oct 13 15:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14364, sig 0 (0), stat 0
Oct 13 15:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14364 finished, switching from 2 to 1
Oct 13 15:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 15:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 15:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 15:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 15:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 15:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14365
Oct 13 15:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14365, sig 0 (0), stat 0
Oct 13 15:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14365 finished, switching from 2 to 1
Oct 13 15:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 15:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 16:01:01 Inblr-bislinux1 crond(pam_unix)[14366]: session opened for user root by (uid=0)
Oct 13 16:01:01 Inblr-bislinux1 crond[14367]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 16:01:01 Inblr-bislinux1 crond(pam_unix)[14366]: session closed for user root
Oct 13 16:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 16:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 16:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 16:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14376
Oct 13 16:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14376, sig 0 (0), stat 0
Oct 13 16:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14376 finished, switching from 2 to 1
Oct 13 16:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 16:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 16:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 16:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 16:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 16:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14377
Oct 13 16:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14377, sig 0 (0), stat 0
Oct 13 16:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14377 finished, switching from 2 to 1
Oct 13 16:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 16:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 16:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 16:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 16:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 16:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14380
Oct 13 16:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14380, sig 0 (0), stat 0
Oct 13 16:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14380 finished, switching from 2 to 1
Oct 13 16:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 16:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 16:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 16:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 16:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 16:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14381
Oct 13 16:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14381, sig 0 (0), stat 0
Oct 13 16:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14381 finished, switching from 2 to 1
Oct 13 16:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 16:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 17:01:01 Inblr-bislinux1 crond(pam_unix)[14382]: session opened for user root by (uid=0)
Oct 13 17:01:01 Inblr-bislinux1 crond[14383]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 17:01:01 Inblr-bislinux1 crond(pam_unix)[14382]: session closed for user root
Oct 13 17:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 17:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 17:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 17:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14392
Oct 13 17:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14392, sig 0 (0), stat 0
Oct 13 17:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14392 finished, switching from 2 to 1
Oct 13 17:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 17:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
[-- Attachment #3: Type: text/plain, Size: 140 bytes --]
_______________________________________________
autofs mailing list
autofs@linux.kernel.org
http://linux.kernel.org/mailman/listinfo/autofs
^ permalink raw reply
* Re: [Bluez-devel] avrcp spec?
From: Marcel Holtmann @ 2005-10-13 9:39 UTC (permalink / raw)
To: bluez-devel
In-Reply-To: <434E026E.1080001@xmission.com>
Hi Brad,
> bluetooth.org won't let me download avrcp_spec_d12. It seems to be
> locking out free logins from select documents. Is this profile
> documented anywhere else?
I never looked at the AVRCP specification, but you need some additional
documents for specific remote codes as far as I know.
Regards
Marcel
-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel
^ permalink raw reply
* About nand flash mtd block
From: z xw @ 2005-10-13 9:38 UTC (permalink / raw)
To: linux-mtd
Dear All,
I am a newbie for this list. I just encouterred a problem when add
a nand flash to my db-mx1 board, I have added the nand part to mtd. and
when I use
"cat /proc/mtd" ,I can find:
mtd0: 00020000 00010000 "bootloader"
mtd1: 00100000 00020000 "kernel"
mtd2: 00500000 00020000 "file system1"
mtd3: 001e0000 00020000 "file system"
mtd4: 01000000 00000000 "mx1 NAND Flash"
The mtd4 is the nand flash I added. But I can't find the device file in
/dev/mtdblock/
The device file only 0,1,2,3.there is no device file for nand flash.
Anybody have met such a problem? Any reply is welcome.
Great appreciation to you help.
Regards,
Vincent Zhou
_________________________________________________________________
免费下载 MSN Explorer: http://explorer.msn.com/lccn/
^ permalink raw reply
* unable to mount /net to RHEL4 from sunos5.8
From: Krishna Venkataraman @ 2005-10-13 9:39 UTC (permalink / raw)
To: autofs
[-- Attachment #1.1: Type: text/plain, Size: 2774 bytes --]
Hi all ,
Could you please address my issue. i am facing problems in mounting /net.
The server is sunos5.8 and my client is RHEL4.
I have attached the /var/log/debug file for your reference.
I am facing some issues in mounting the /net directory from the Solaris
server (SunOS 5.8) to my RHEL4. I am trying to automount the /net directory
to download VOB files to my local RHEL4 client. The Autofs version i have in
my RHEL4 client is autofs-4.1.3-67.I am not sure if i have to apply a patch
to the existing autofs version, since you have discussed extensively about
apply patches for autofs4, i am raising this query.
Do you have any whitepaper that gives me in detail to steps for mount the
/net non sharable filesystem? I was told that /net cannot be shared to hard
mount.
will there be any configuration on the sunos server to add my client name
for mounting /net ??
Could you please give me a solution to this problem. i have been trying to
fix this issue for quite sometime!
i am copying my auto.master and auto.net <http://auto.net/> file here...
my auto.master file says following
#
# $Id: auto.master,v 1.3 2003/09/29 08:22:35 raven Exp $
#
# Sample auto.master file
# This is an automounter map and it has the following format
# key [ -mount-options-separated-by-comma ] location
# For details of the format look at autofs(5).
#/misc /etc/auto.misc --timeout=60
#/misc /etc/auto.misc
/net /etc/auto.net
my auto.net <http://auto.net/> file says
#!/bin/sh
# $Id: auto.net <http://auto.net/>,v 1.5 2003/09/29 08:22:35 raven Exp $
# Look at what a host is exporting to determine what we can mount.
# This is very simple, but it appears to work surprisingly well
key="$1"
# add "nosymlink" here if you want to suppress symlinking local filesystems
# add "nonstrict" to make it OK for some filesystems to not mount
opts="-fstype=nfs,hard,intr,nodev,nosuid"
# Showmount comes in a number of names and varieties. "showmount" is
# typically an older version which accepts the '--no-headers' flag
# but ignores it. "kshowmount" is the newer version installed with knfsd,
# which both accepts and acts on the '--no-headers' flag.
#SHOWMOUNT="kshowmount --no-headers -e $key"
#SHOWMOUNT="showmount -e $key | tail +2"
# Newer distributions get this right
SHOWMOUNT="/usr/sbin/showmount --no-headers -e $key"
$SHOWMOUNT | sort +0 | \
awk -v key="$key" -v opts="$opts" -- '
BEGIN { ORS=""; first=1 }
{ if (first) { print opts; first=0 }; print " \\\n\t" $1, key ":" $1 }
END { if (!first) print "\n"; else exit 1 }
'
and nsswitch.conf for automount is configured for files.
--
Kind regards
Krishna.
--
Kind regards
Krishna.
Krishna Prasadh Venkataraman
krishnap.venkataraman@gmail.com
[-- Attachment #1.2: Type: text/html, Size: 5978 bytes --]
[-- Attachment #2: debug --]
[-- Type: text/plain, Size: 150560 bytes --]
Oct 11 17:08:27 Inblr-bislinux1 syslogd 1.4.1: restart.
Oct 11 17:08:27 Inblr-bislinux1 syslog: syslogd startup succeeded
Oct 11 17:08:27 Inblr-bislinux1 kernel: klogd 1.4.1, log source = /proc/kmsg started.
Oct 11 17:08:27 Inblr-bislinux1 syslog: klogd startup succeeded
Oct 11 17:08:27 Inblr-bislinux1 syslog: syslogd shutdown succeeded
Oct 11 17:09:33 Inblr-bislinux1 automount[12507]: handle_packet: type = 0
Oct 11 17:09:33 Inblr-bislinux1 automount[12507]: handle_packet_missing: token 113, name idps3
Oct 11 17:09:33 Inblr-bislinux1 automount[12507]: attempting to mount entry /net/idps3
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: lookup(file): idps3 -> -fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6 idps3:/net/idps3
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: parse(sun): expanded entry: -fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6 idps3:/net/idps3
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: parse(sun): dequote("fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6") -> fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: parse(sun): gathered options: fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: parse(sun): dequote("idps3:/net/idps3") -> idps3:/net/idps3
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: parse(sun): core of entry: options=fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6, loc=idps3:/net/idps3
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: parse(sun): mounting root /net, mountpoint idps3, what idps3:/net/idps3, fstype nfs, options rsize=8192,wsize=8192,timeo=5,retrans=6
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: mount(nfs): root=/net name=idps3 what=idps3:/net/idps3, fstype=nfs, options=rsize=8192,wsize=8192,timeo=5,retrans=6
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: mount(nfs): nfs options="rsize=8192,wsize=8192,timeo=5,retrans=6", nosymlink=0
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: mount(nfs): winner = (null) local = 0
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: mount(nfs): no host elected
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: failed to mount /net/idps3
Oct 11 17:09:33 Inblr-bislinux1 automount[12614]: umount_multi: path=/net/idps3 incl=1
Oct 11 17:09:33 Inblr-bislinux1 automount[12507]: handle_child: got pid 12614, sig 0 (0), stat 1
Oct 11 17:09:33 Inblr-bislinux1 automount[12507]: sig_child: found pending iop pid 12614: signalled 0 (sig 0), exit status 1
Oct 11 17:09:33 Inblr-bislinux1 automount[12507]: send_fail: token=113
Oct 11 17:13:36 Inblr-bislinux1 automount[12507]: handle_packet: type = 0
Oct 11 17:13:36 Inblr-bislinux1 automount[12507]: handle_packet_missing: token 114, name idps3
Oct 11 17:13:36 Inblr-bislinux1 automount[12507]: attempting to mount entry /net/idps3
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: lookup(file): idps3 -> -fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6 idps3:/net/idps3
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: parse(sun): expanded entry: -fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6 idps3:/net/idps3
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: parse(sun): dequote("fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6") -> fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: parse(sun): gathered options: fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: parse(sun): dequote("idps3:/net/idps3") -> idps3:/net/idps3
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: parse(sun): core of entry: options=fstype=nfs,rsize=8192,wsize=8192,timeo=5,retrans=6, loc=idps3:/net/idps3
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: parse(sun): mounting root /net, mountpoint idps3, what idps3:/net/idps3, fstype nfs, options rsize=8192,wsize=8192,timeo=5,retrans=6
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: mount(nfs): root=/net name=idps3 what=idps3:/net/idps3, fstype=nfs, options=rsize=8192,wsize=8192,timeo=5,retrans=6
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: mount(nfs): nfs options="rsize=8192,wsize=8192,timeo=5,retrans=6", nosymlink=0
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: mount(nfs): winner = (null) local = 0
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: mount(nfs): no host elected
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: failed to mount /net/idps3
Oct 11 17:13:36 Inblr-bislinux1 automount[12618]: umount_multi: path=/net/idps3 incl=1
Oct 11 17:13:36 Inblr-bislinux1 automount[12507]: handle_child: got pid 12618, sig 0 (0), stat 1
Oct 11 17:13:36 Inblr-bislinux1 automount[12507]: sig_child: found pending iop pid 12618: signalled 0 (sig 0), exit status 1
Oct 11 17:13:36 Inblr-bislinux1 automount[12507]: send_fail: token=114
Oct 11 17:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 17:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 17:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 17:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12622
Oct 11 17:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12622, sig 0 (0), stat 0
Oct 11 17:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12622 finished, switching from 2 to 1
Oct 11 17:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 17:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 17:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 17:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 17:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 17:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12623
Oct 11 17:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12623, sig 0 (0), stat 0
Oct 11 17:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12623 finished, switching from 2 to 1
Oct 11 17:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 17:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 18:01:01 Inblr-bislinux1 crond(pam_unix)[12624]: session opened for user root by (uid=0)
Oct 11 18:01:01 Inblr-bislinux1 crond[12625]: (root) CMD (run-parts /etc/cron.hourly)
Oct 11 18:01:01 Inblr-bislinux1 crond(pam_unix)[12624]: session closed for user root
Oct 11 18:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 18:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 18:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 18:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12634
Oct 11 18:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12634, sig 0 (0), stat 0
Oct 11 18:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12634 finished, switching from 2 to 1
Oct 11 18:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 18:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 18:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 18:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 18:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 18:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12635
Oct 11 18:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12635, sig 0 (0), stat 0
Oct 11 18:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12635 finished, switching from 2 to 1
Oct 11 18:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 18:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 18:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 18:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 18:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 18:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12638
Oct 11 18:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12638, sig 0 (0), stat 0
Oct 11 18:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12638 finished, switching from 2 to 1
Oct 11 18:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 18:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 18:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 18:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 18:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 18:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12639
Oct 11 18:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12639, sig 0 (0), stat 0
Oct 11 18:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12639 finished, switching from 2 to 1
Oct 11 18:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 18:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 19:01:01 Inblr-bislinux1 crond(pam_unix)[12640]: session opened for user root by (uid=0)
Oct 11 19:01:01 Inblr-bislinux1 crond[12641]: (root) CMD (run-parts /etc/cron.hourly)
Oct 11 19:01:01 Inblr-bislinux1 crond(pam_unix)[12640]: session closed for user root
Oct 11 19:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 19:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 19:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 19:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12650
Oct 11 19:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12650, sig 0 (0), stat 0
Oct 11 19:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12650 finished, switching from 2 to 1
Oct 11 19:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 19:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 19:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 19:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 19:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 19:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12651
Oct 11 19:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12651, sig 0 (0), stat 0
Oct 11 19:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12651 finished, switching from 2 to 1
Oct 11 19:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 19:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 19:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 19:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 19:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 19:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12654
Oct 11 19:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12654, sig 0 (0), stat 0
Oct 11 19:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12654 finished, switching from 2 to 1
Oct 11 19:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 19:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 19:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 19:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 19:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 19:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12655
Oct 11 19:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12655, sig 0 (0), stat 0
Oct 11 19:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12655 finished, switching from 2 to 1
Oct 11 19:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 19:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 20:01:01 Inblr-bislinux1 crond(pam_unix)[12656]: session opened for user root by (uid=0)
Oct 11 20:01:01 Inblr-bislinux1 crond[12657]: (root) CMD (run-parts /etc/cron.hourly)
Oct 11 20:01:01 Inblr-bislinux1 crond(pam_unix)[12656]: session closed for user root
Oct 11 20:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 20:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 20:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 20:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12666
Oct 11 20:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12666, sig 0 (0), stat 0
Oct 11 20:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12666 finished, switching from 2 to 1
Oct 11 20:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 20:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 20:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 20:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 20:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 20:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12667
Oct 11 20:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12667, sig 0 (0), stat 0
Oct 11 20:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12667 finished, switching from 2 to 1
Oct 11 20:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 20:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 20:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 20:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 20:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 20:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12670
Oct 11 20:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12670, sig 0 (0), stat 0
Oct 11 20:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12670 finished, switching from 2 to 1
Oct 11 20:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 20:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 20:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 20:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 20:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 20:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12671
Oct 11 20:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12671, sig 0 (0), stat 0
Oct 11 20:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12671 finished, switching from 2 to 1
Oct 11 20:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 20:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 21:01:01 Inblr-bislinux1 crond(pam_unix)[12672]: session opened for user root by (uid=0)
Oct 11 21:01:01 Inblr-bislinux1 crond[12673]: (root) CMD (run-parts /etc/cron.hourly)
Oct 11 21:01:01 Inblr-bislinux1 crond(pam_unix)[12672]: session closed for user root
Oct 11 21:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 21:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 21:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 21:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12682
Oct 11 21:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12682, sig 0 (0), stat 0
Oct 11 21:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12682 finished, switching from 2 to 1
Oct 11 21:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 21:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 21:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 21:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 21:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 21:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12683
Oct 11 21:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12683, sig 0 (0), stat 0
Oct 11 21:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12683 finished, switching from 2 to 1
Oct 11 21:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 21:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 21:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 21:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 21:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 21:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12686
Oct 11 21:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12686, sig 0 (0), stat 0
Oct 11 21:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12686 finished, switching from 2 to 1
Oct 11 21:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 21:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 21:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 21:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 21:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 21:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12687
Oct 11 21:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12687, sig 0 (0), stat 0
Oct 11 21:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12687 finished, switching from 2 to 1
Oct 11 21:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 21:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 22:01:01 Inblr-bislinux1 crond(pam_unix)[12688]: session opened for user root by (uid=0)
Oct 11 22:01:01 Inblr-bislinux1 crond[12689]: (root) CMD (run-parts /etc/cron.hourly)
Oct 11 22:01:01 Inblr-bislinux1 crond(pam_unix)[12688]: session closed for user root
Oct 11 22:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 22:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 22:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 22:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12698
Oct 11 22:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12698, sig 0 (0), stat 0
Oct 11 22:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12698 finished, switching from 2 to 1
Oct 11 22:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 22:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 22:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 22:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 22:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 22:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12699
Oct 11 22:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12699, sig 0 (0), stat 0
Oct 11 22:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12699 finished, switching from 2 to 1
Oct 11 22:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 22:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 22:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 22:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 22:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 22:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12702
Oct 11 22:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12702, sig 0 (0), stat 0
Oct 11 22:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12702 finished, switching from 2 to 1
Oct 11 22:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 22:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 22:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 22:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 22:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 22:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12703
Oct 11 22:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12703, sig 0 (0), stat 0
Oct 11 22:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12703 finished, switching from 2 to 1
Oct 11 22:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 22:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 23:01:01 Inblr-bislinux1 crond(pam_unix)[12704]: session opened for user root by (uid=0)
Oct 11 23:01:01 Inblr-bislinux1 crond[12705]: (root) CMD (run-parts /etc/cron.hourly)
Oct 11 23:01:01 Inblr-bislinux1 crond(pam_unix)[12704]: session closed for user root
Oct 11 23:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 23:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 23:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 23:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12714
Oct 11 23:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12714, sig 0 (0), stat 0
Oct 11 23:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12714 finished, switching from 2 to 1
Oct 11 23:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 23:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 23:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 23:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 23:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 23:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12715
Oct 11 23:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12715, sig 0 (0), stat 0
Oct 11 23:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12715 finished, switching from 2 to 1
Oct 11 23:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 23:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 23:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 23:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 23:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 23:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12718
Oct 11 23:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12718, sig 0 (0), stat 0
Oct 11 23:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12718 finished, switching from 2 to 1
Oct 11 23:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 23:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 11 23:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 11 23:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 11 23:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 11 23:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12719
Oct 11 23:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12719, sig 0 (0), stat 0
Oct 11 23:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12719 finished, switching from 2 to 1
Oct 11 23:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 11 23:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 00:01:01 Inblr-bislinux1 crond(pam_unix)[12720]: session opened for user root by (uid=0)
Oct 12 00:01:01 Inblr-bislinux1 crond[12721]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 00:01:01 Inblr-bislinux1 crond(pam_unix)[12720]: session closed for user root
Oct 12 00:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 00:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 00:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 00:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12730
Oct 12 00:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12730, sig 0 (0), stat 0
Oct 12 00:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12730 finished, switching from 2 to 1
Oct 12 00:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 00:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 00:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 00:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 00:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 00:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12731
Oct 12 00:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12731, sig 0 (0), stat 0
Oct 12 00:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12731 finished, switching from 2 to 1
Oct 12 00:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 00:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 00:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 00:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 00:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 00:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12734
Oct 12 00:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12734, sig 0 (0), stat 0
Oct 12 00:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12734 finished, switching from 2 to 1
Oct 12 00:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 00:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 00:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 00:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 00:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 00:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12735
Oct 12 00:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12735, sig 0 (0), stat 0
Oct 12 00:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12735 finished, switching from 2 to 1
Oct 12 00:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 00:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 01:01:01 Inblr-bislinux1 crond(pam_unix)[12736]: session opened for user root by (uid=0)
Oct 12 01:01:01 Inblr-bislinux1 crond[12737]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 01:01:01 Inblr-bislinux1 crond(pam_unix)[12736]: session closed for user root
Oct 12 01:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 01:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 01:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 01:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12746
Oct 12 01:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12746, sig 0 (0), stat 0
Oct 12 01:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12746 finished, switching from 2 to 1
Oct 12 01:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 01:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 01:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 01:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 01:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 01:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12747
Oct 12 01:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12747, sig 0 (0), stat 0
Oct 12 01:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12747 finished, switching from 2 to 1
Oct 12 01:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 01:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 01:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 01:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 01:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 01:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12750
Oct 12 01:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12750, sig 0 (0), stat 0
Oct 12 01:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12750 finished, switching from 2 to 1
Oct 12 01:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 01:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 01:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 01:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 01:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 01:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12751
Oct 12 01:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12751, sig 0 (0), stat 0
Oct 12 01:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12751 finished, switching from 2 to 1
Oct 12 01:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 01:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 02:01:01 Inblr-bislinux1 crond(pam_unix)[12752]: session opened for user root by (uid=0)
Oct 12 02:01:01 Inblr-bislinux1 crond[12753]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 02:01:01 Inblr-bislinux1 crond(pam_unix)[12752]: session closed for user root
Oct 12 02:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 02:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 02:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 02:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12762
Oct 12 02:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12762, sig 0 (0), stat 0
Oct 12 02:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12762 finished, switching from 2 to 1
Oct 12 02:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 02:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 02:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 02:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 02:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 02:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12763
Oct 12 02:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12763, sig 0 (0), stat 0
Oct 12 02:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12763 finished, switching from 2 to 1
Oct 12 02:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 02:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 02:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 02:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 02:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 02:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12766
Oct 12 02:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12766, sig 0 (0), stat 0
Oct 12 02:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12766 finished, switching from 2 to 1
Oct 12 02:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 02:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 02:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 02:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 02:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 02:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12767
Oct 12 02:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12767, sig 0 (0), stat 0
Oct 12 02:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12767 finished, switching from 2 to 1
Oct 12 02:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 02:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 03:01:01 Inblr-bislinux1 crond(pam_unix)[12768]: session opened for user root by (uid=0)
Oct 12 03:01:01 Inblr-bislinux1 crond[12769]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 03:01:01 Inblr-bislinux1 crond(pam_unix)[12768]: session closed for user root
Oct 12 03:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 03:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 03:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 03:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12778
Oct 12 03:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12778, sig 0 (0), stat 0
Oct 12 03:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12778 finished, switching from 2 to 1
Oct 12 03:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 03:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 03:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 03:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 03:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 03:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12779
Oct 12 03:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12779, sig 0 (0), stat 0
Oct 12 03:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12779 finished, switching from 2 to 1
Oct 12 03:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 03:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 03:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 03:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 03:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 03:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12782
Oct 12 03:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12782, sig 0 (0), stat 0
Oct 12 03:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12782 finished, switching from 2 to 1
Oct 12 03:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 03:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 03:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 03:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 03:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 03:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=12783
Oct 12 03:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 12783, sig 0 (0), stat 0
Oct 12 03:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 12783 finished, switching from 2 to 1
Oct 12 03:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 03:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 04:01:01 Inblr-bislinux1 crond(pam_unix)[12784]: session opened for user root by (uid=0)
Oct 12 04:01:01 Inblr-bislinux1 crond[12785]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 04:01:01 Inblr-bislinux1 crond(pam_unix)[12784]: session closed for user root
Oct 12 04:02:01 Inblr-bislinux1 crond(pam_unix)[12794]: session opened for user root by (uid=0)
Oct 12 04:02:01 Inblr-bislinux1 crond[12795]: (root) CMD (run-parts /etc/cron.daily)
Oct 12 04:02:16 Inblr-bislinux1 sendmail[13126]: j9BN2Gtv013126: from=root, size=2543, class=0, nrcpts=1, msgid=<200510112302.j9BN2Gtv013126@localhost.localdomain>, relay=root@localhost
Oct 12 04:02:16 Inblr-bislinux1 sendmail[13128]: warning: /etc/hosts.allow, line 7: missing ":" separator
Oct 12 04:02:16 Inblr-bislinux1 sendmail[13128]: j9BN2G2e013128: from=<root@localhost.localdomain>, size=2849, class=0, nrcpts=1, msgid=<200510112302.j9BN2Gtv013126@localhost.localdomain>, proto=ESMTP, daemon=MTA, relay=localhost.localdomain [127.0.0.1]
Oct 12 04:02:16 Inblr-bislinux1 sendmail[13126]: j9BN2Gtv013126: to=root, ctladdr=root (0/0), delay=00:00:00, xdelay=00:00:00, mailer=relay, pri=32543, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (j9BN2G2e013128 Message accepted for delivery)
Oct 12 04:02:16 Inblr-bislinux1 sendmail[13129]: j9BN2G2e013128: to=<root@localhost.localdomain>, ctladdr=<root@localhost.localdomain> (0/0), delay=00:00:00, xdelay=00:00:00, mailer=local, pri=33086, dsn=2.0.0, stat=Sent
Oct 12 04:02:17 Inblr-bislinux1 anacron[13217]: Updated timestamp for job `cron.daily' to 2005-10-12
Oct 12 04:02:22 Inblr-bislinux1 crond(pam_unix)[12794]: session closed for user root
Oct 12 04:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 04:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 04:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 04:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13276
Oct 12 04:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13276, sig 0 (0), stat 0
Oct 12 04:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13276 finished, switching from 2 to 1
Oct 12 04:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 04:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 04:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 04:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 04:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 04:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13277
Oct 12 04:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13277, sig 0 (0), stat 0
Oct 12 04:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13277 finished, switching from 2 to 1
Oct 12 04:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 04:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 04:32:28 Inblr-bislinux1 automount[12507]: handle_packet: type = 0
Oct 12 04:32:28 Inblr-bislinux1 automount[12507]: handle_packet_missing: token 115, name Inblr-bislinux1.eu.uis.unisys.com
Oct 12 04:32:28 Inblr-bislinux1 automount[12507]: attempting to mount entry /net/Inblr-bislinux1.eu.uis.unisys.com
Oct 12 04:32:28 Inblr-bislinux1 automount[13302]: failed to mount /net/Inblr-bislinux1.eu.uis.unisys.com
Oct 12 04:32:28 Inblr-bislinux1 automount[13302]: umount_multi: path=/net/Inblr-bislinux1.eu.uis.unisys.com incl=1
Oct 12 04:32:28 Inblr-bislinux1 automount[12507]: handle_child: got pid 13302, sig 0 (0), stat 1
Oct 12 04:32:28 Inblr-bislinux1 automount[12507]: sig_child: found pending iop pid 13302: signalled 0 (sig 0), exit status 1
Oct 12 04:32:28 Inblr-bislinux1 automount[12507]: send_fail: token=115
Oct 12 04:32:28 Inblr-bislinux1 sendmail[13307]: j9BNWSrc013307: from=root, size=581, class=0, nrcpts=1, msgid=<200510112332.j9BNWSrc013307@localhost.localdomain>, relay=root@localhost
Oct 12 04:32:28 Inblr-bislinux1 sendmail[13308]: warning: /etc/hosts.allow, line 7: missing ":" separator
Oct 12 04:32:28 Inblr-bislinux1 sendmail[13308]: j9BNWSBN013308: from=<root@localhost.localdomain>, size=887, class=0, nrcpts=1, msgid=<200510112332.j9BNWSrc013307@localhost.localdomain>, proto=ESMTP, daemon=MTA, relay=localhost.localdomain [127.0.0.1]
Oct 12 04:32:28 Inblr-bislinux1 sendmail[13307]: j9BNWSrc013307: to=root, ctladdr=root (0/0), delay=00:00:00, xdelay=00:00:00, mailer=relay, pri=30581, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (j9BNWSBN013308 Message accepted for delivery)
Oct 12 04:32:28 Inblr-bislinux1 sendmail[13309]: j9BNWSBN013308: to=<root@localhost.localdomain>, ctladdr=<root@localhost.localdomain> (0/0), delay=00:00:00, xdelay=00:00:00, mailer=local, pri=31125, dsn=2.0.0, stat=Sent
Oct 12 04:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 04:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 04:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 04:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13311
Oct 12 04:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13311, sig 0 (0), stat 0
Oct 12 04:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13311 finished, switching from 2 to 1
Oct 12 04:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 04:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 04:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 04:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 04:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 04:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13312
Oct 12 04:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13312, sig 0 (0), stat 0
Oct 12 04:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13312 finished, switching from 2 to 1
Oct 12 04:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 04:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 05:01:01 Inblr-bislinux1 crond(pam_unix)[13313]: session opened for user root by (uid=0)
Oct 12 05:01:01 Inblr-bislinux1 crond[13314]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 05:01:01 Inblr-bislinux1 crond(pam_unix)[13313]: session closed for user root
Oct 12 05:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 05:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 05:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 05:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13323
Oct 12 05:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13323, sig 0 (0), stat 0
Oct 12 05:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13323 finished, switching from 2 to 1
Oct 12 05:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 05:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 05:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 05:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 05:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 05:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13324
Oct 12 05:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13324, sig 0 (0), stat 0
Oct 12 05:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13324 finished, switching from 2 to 1
Oct 12 05:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 05:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 05:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 05:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 05:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 05:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13327
Oct 12 05:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13327, sig 0 (0), stat 0
Oct 12 05:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13327 finished, switching from 2 to 1
Oct 12 05:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 05:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 05:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 05:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 05:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 05:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13328
Oct 12 05:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13328, sig 0 (0), stat 0
Oct 12 05:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13328 finished, switching from 2 to 1
Oct 12 05:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 05:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 06:01:01 Inblr-bislinux1 crond(pam_unix)[13329]: session opened for user root by (uid=0)
Oct 12 06:01:01 Inblr-bislinux1 crond[13330]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 06:01:01 Inblr-bislinux1 crond(pam_unix)[13329]: session closed for user root
Oct 12 06:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 06:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 06:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 06:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13339
Oct 12 06:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13339, sig 0 (0), stat 0
Oct 12 06:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13339 finished, switching from 2 to 1
Oct 12 06:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 06:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 06:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 06:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 06:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 06:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13340
Oct 12 06:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13340, sig 0 (0), stat 0
Oct 12 06:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13340 finished, switching from 2 to 1
Oct 12 06:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 06:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 06:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 06:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 06:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 06:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13343
Oct 12 06:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13343, sig 0 (0), stat 0
Oct 12 06:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13343 finished, switching from 2 to 1
Oct 12 06:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 06:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 06:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 06:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 06:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 06:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13344
Oct 12 06:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13344, sig 0 (0), stat 0
Oct 12 06:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13344 finished, switching from 2 to 1
Oct 12 06:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 06:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 07:01:01 Inblr-bislinux1 crond(pam_unix)[13345]: session opened for user root by (uid=0)
Oct 12 07:01:01 Inblr-bislinux1 crond[13346]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 07:01:01 Inblr-bislinux1 crond(pam_unix)[13345]: session closed for user root
Oct 12 07:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 07:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 07:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 07:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13355
Oct 12 07:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13355, sig 0 (0), stat 0
Oct 12 07:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13355 finished, switching from 2 to 1
Oct 12 07:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 07:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 07:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 07:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 07:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 07:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13356
Oct 12 07:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13356, sig 0 (0), stat 0
Oct 12 07:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13356 finished, switching from 2 to 1
Oct 12 07:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 07:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 07:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 07:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 07:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 07:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13359
Oct 12 07:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13359, sig 0 (0), stat 0
Oct 12 07:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13359 finished, switching from 2 to 1
Oct 12 07:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 07:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 07:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 07:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 07:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 07:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13360
Oct 12 07:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13360, sig 0 (0), stat 0
Oct 12 07:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13360 finished, switching from 2 to 1
Oct 12 07:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 07:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 08:01:01 Inblr-bislinux1 crond(pam_unix)[13361]: session opened for user root by (uid=0)
Oct 12 08:01:01 Inblr-bislinux1 crond[13362]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 08:01:01 Inblr-bislinux1 crond(pam_unix)[13361]: session closed for user root
Oct 12 08:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 08:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 08:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 08:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13371
Oct 12 08:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13371, sig 0 (0), stat 0
Oct 12 08:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13371 finished, switching from 2 to 1
Oct 12 08:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 08:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 08:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 08:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 08:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 08:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13372
Oct 12 08:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13372, sig 0 (0), stat 0
Oct 12 08:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13372 finished, switching from 2 to 1
Oct 12 08:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 08:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 08:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 08:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 08:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 08:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13375
Oct 12 08:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13375, sig 0 (0), stat 0
Oct 12 08:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13375 finished, switching from 2 to 1
Oct 12 08:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 08:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 08:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 08:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 08:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 08:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13376
Oct 12 08:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13376, sig 0 (0), stat 0
Oct 12 08:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13376 finished, switching from 2 to 1
Oct 12 08:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 08:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 09:01:01 Inblr-bislinux1 crond(pam_unix)[13377]: session opened for user root by (uid=0)
Oct 12 09:01:01 Inblr-bislinux1 crond[13378]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 09:01:01 Inblr-bislinux1 crond(pam_unix)[13377]: session closed for user root
Oct 12 09:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 09:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 09:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 09:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13387
Oct 12 09:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13387, sig 0 (0), stat 0
Oct 12 09:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13387 finished, switching from 2 to 1
Oct 12 09:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 09:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 09:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 09:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 09:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 09:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13388
Oct 12 09:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13388, sig 0 (0), stat 0
Oct 12 09:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13388 finished, switching from 2 to 1
Oct 12 09:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 09:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 09:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 09:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 09:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 09:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13391
Oct 12 09:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13391, sig 0 (0), stat 0
Oct 12 09:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13391 finished, switching from 2 to 1
Oct 12 09:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 09:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 09:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 09:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 09:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 09:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13392
Oct 12 09:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13392, sig 0 (0), stat 0
Oct 12 09:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13392 finished, switching from 2 to 1
Oct 12 09:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 09:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 10:01:01 Inblr-bislinux1 crond(pam_unix)[13393]: session opened for user root by (uid=0)
Oct 12 10:01:01 Inblr-bislinux1 crond[13394]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 10:01:01 Inblr-bislinux1 crond(pam_unix)[13393]: session closed for user root
Oct 12 10:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 10:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 10:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 10:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13403
Oct 12 10:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13403, sig 0 (0), stat 0
Oct 12 10:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13403 finished, switching from 2 to 1
Oct 12 10:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 10:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 10:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 10:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 10:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 10:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13404
Oct 12 10:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13404, sig 0 (0), stat 0
Oct 12 10:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13404 finished, switching from 2 to 1
Oct 12 10:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 10:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 10:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 10:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 10:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 10:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13407
Oct 12 10:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13407, sig 0 (0), stat 0
Oct 12 10:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13407 finished, switching from 2 to 1
Oct 12 10:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 10:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 10:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 10:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 10:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 10:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13408
Oct 12 10:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13408, sig 0 (0), stat 0
Oct 12 10:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13408 finished, switching from 2 to 1
Oct 12 10:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 10:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 11:01:01 Inblr-bislinux1 crond(pam_unix)[13409]: session opened for user root by (uid=0)
Oct 12 11:01:01 Inblr-bislinux1 crond[13410]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 11:01:01 Inblr-bislinux1 crond(pam_unix)[13409]: session closed for user root
Oct 12 11:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 11:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 11:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 11:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13419
Oct 12 11:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13419, sig 0 (0), stat 0
Oct 12 11:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13419 finished, switching from 2 to 1
Oct 12 11:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 11:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 11:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 11:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 11:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 11:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13420
Oct 12 11:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13420, sig 0 (0), stat 0
Oct 12 11:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13420 finished, switching from 2 to 1
Oct 12 11:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 11:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 11:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 11:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 11:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 11:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13423
Oct 12 11:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13423, sig 0 (0), stat 0
Oct 12 11:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13423 finished, switching from 2 to 1
Oct 12 11:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 11:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 11:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 11:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 11:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 11:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13424
Oct 12 11:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13424, sig 0 (0), stat 0
Oct 12 11:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13424 finished, switching from 2 to 1
Oct 12 11:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 11:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 12:01:01 Inblr-bislinux1 crond(pam_unix)[13425]: session opened for user root by (uid=0)
Oct 12 12:01:01 Inblr-bislinux1 crond[13426]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 12:01:01 Inblr-bislinux1 crond(pam_unix)[13425]: session closed for user root
Oct 12 12:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 12:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 12:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 12:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13435
Oct 12 12:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13435, sig 0 (0), stat 0
Oct 12 12:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13435 finished, switching from 2 to 1
Oct 12 12:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 12:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 12:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 12:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 12:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 12:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13436
Oct 12 12:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13436, sig 0 (0), stat 0
Oct 12 12:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13436 finished, switching from 2 to 1
Oct 12 12:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 12:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 12:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 12:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 12:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 12:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13439
Oct 12 12:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13439, sig 0 (0), stat 0
Oct 12 12:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13439 finished, switching from 2 to 1
Oct 12 12:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 12:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 12:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 12:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 12:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 12:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13440
Oct 12 12:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13440, sig 0 (0), stat 0
Oct 12 12:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13440 finished, switching from 2 to 1
Oct 12 12:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 12:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 13:01:01 Inblr-bislinux1 crond(pam_unix)[13441]: session opened for user root by (uid=0)
Oct 12 13:01:01 Inblr-bislinux1 crond[13442]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 13:01:01 Inblr-bislinux1 crond(pam_unix)[13441]: session closed for user root
Oct 12 13:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 13:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 13:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 13:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13451
Oct 12 13:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13451, sig 0 (0), stat 0
Oct 12 13:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13451 finished, switching from 2 to 1
Oct 12 13:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 13:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 13:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 13:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 13:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 13:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13452
Oct 12 13:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13452, sig 0 (0), stat 0
Oct 12 13:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13452 finished, switching from 2 to 1
Oct 12 13:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 13:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 13:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 13:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 13:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 13:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13455
Oct 12 13:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13455, sig 0 (0), stat 0
Oct 12 13:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13455 finished, switching from 2 to 1
Oct 12 13:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 13:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 13:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 13:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 13:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 13:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13456
Oct 12 13:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13456, sig 0 (0), stat 0
Oct 12 13:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13456 finished, switching from 2 to 1
Oct 12 13:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 13:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 14:01:01 Inblr-bislinux1 crond(pam_unix)[13457]: session opened for user root by (uid=0)
Oct 12 14:01:01 Inblr-bislinux1 crond[13458]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 14:01:01 Inblr-bislinux1 crond(pam_unix)[13457]: session closed for user root
Oct 12 14:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 14:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 14:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 14:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13467
Oct 12 14:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13467, sig 0 (0), stat 0
Oct 12 14:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13467 finished, switching from 2 to 1
Oct 12 14:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 14:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 14:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 14:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 14:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 14:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13468
Oct 12 14:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13468, sig 0 (0), stat 0
Oct 12 14:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13468 finished, switching from 2 to 1
Oct 12 14:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 14:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 14:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 14:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 14:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 14:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13471
Oct 12 14:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13471, sig 0 (0), stat 0
Oct 12 14:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13471 finished, switching from 2 to 1
Oct 12 14:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 14:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 14:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 14:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 14:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 14:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13472
Oct 12 14:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13472, sig 0 (0), stat 0
Oct 12 14:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13472 finished, switching from 2 to 1
Oct 12 14:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 14:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 15:01:01 Inblr-bislinux1 crond(pam_unix)[13473]: session opened for user root by (uid=0)
Oct 12 15:01:01 Inblr-bislinux1 crond[13474]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 15:01:01 Inblr-bislinux1 crond(pam_unix)[13473]: session closed for user root
Oct 12 15:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 15:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 15:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 15:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13483
Oct 12 15:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13483, sig 0 (0), stat 0
Oct 12 15:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13483 finished, switching from 2 to 1
Oct 12 15:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 15:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 15:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 15:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 15:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 15:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13484
Oct 12 15:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13484, sig 0 (0), stat 0
Oct 12 15:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13484 finished, switching from 2 to 1
Oct 12 15:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 15:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 15:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 15:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 15:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 15:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13487
Oct 12 15:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13487, sig 0 (0), stat 0
Oct 12 15:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13487 finished, switching from 2 to 1
Oct 12 15:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 15:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 15:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 15:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 15:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 15:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13488
Oct 12 15:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13488, sig 0 (0), stat 0
Oct 12 15:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13488 finished, switching from 2 to 1
Oct 12 15:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 15:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 16:01:01 Inblr-bislinux1 crond(pam_unix)[13489]: session opened for user root by (uid=0)
Oct 12 16:01:01 Inblr-bislinux1 crond[13490]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 16:01:01 Inblr-bislinux1 crond(pam_unix)[13489]: session closed for user root
Oct 12 16:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 16:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 16:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 16:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13499
Oct 12 16:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13499, sig 0 (0), stat 0
Oct 12 16:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13499 finished, switching from 2 to 1
Oct 12 16:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 16:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 16:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 16:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 16:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 16:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13500
Oct 12 16:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13500, sig 0 (0), stat 0
Oct 12 16:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13500 finished, switching from 2 to 1
Oct 12 16:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 16:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 16:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 16:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 16:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 16:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13503
Oct 12 16:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13503, sig 0 (0), stat 0
Oct 12 16:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13503 finished, switching from 2 to 1
Oct 12 16:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 16:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 16:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 16:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 16:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 16:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13504
Oct 12 16:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13504, sig 0 (0), stat 0
Oct 12 16:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13504 finished, switching from 2 to 1
Oct 12 16:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 16:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 17:01:01 Inblr-bislinux1 crond(pam_unix)[13505]: session opened for user root by (uid=0)
Oct 12 17:01:01 Inblr-bislinux1 crond[13506]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 17:01:01 Inblr-bislinux1 crond(pam_unix)[13505]: session closed for user root
Oct 12 17:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 17:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 17:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 17:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13515
Oct 12 17:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13515, sig 0 (0), stat 0
Oct 12 17:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13515 finished, switching from 2 to 1
Oct 12 17:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 17:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 17:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 17:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 17:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 17:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13516
Oct 12 17:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13516, sig 0 (0), stat 0
Oct 12 17:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13516 finished, switching from 2 to 1
Oct 12 17:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 17:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 17:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 17:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 17:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 17:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13519
Oct 12 17:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13519, sig 0 (0), stat 0
Oct 12 17:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13519 finished, switching from 2 to 1
Oct 12 17:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 17:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 17:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 17:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 17:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 17:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13520
Oct 12 17:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13520, sig 0 (0), stat 0
Oct 12 17:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13520 finished, switching from 2 to 1
Oct 12 17:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 17:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 18:01:01 Inblr-bislinux1 crond(pam_unix)[13521]: session opened for user root by (uid=0)
Oct 12 18:01:01 Inblr-bislinux1 crond[13522]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 18:01:01 Inblr-bislinux1 crond(pam_unix)[13521]: session closed for user root
Oct 12 18:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 18:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 18:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 18:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13531
Oct 12 18:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13531, sig 0 (0), stat 0
Oct 12 18:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13531 finished, switching from 2 to 1
Oct 12 18:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 18:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 18:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 18:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 18:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 18:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13532
Oct 12 18:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13532, sig 0 (0), stat 0
Oct 12 18:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13532 finished, switching from 2 to 1
Oct 12 18:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 18:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 18:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 18:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 18:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 18:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13535
Oct 12 18:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13535, sig 0 (0), stat 0
Oct 12 18:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13535 finished, switching from 2 to 1
Oct 12 18:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 18:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 18:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 18:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 18:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 18:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13536
Oct 12 18:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13536, sig 0 (0), stat 0
Oct 12 18:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13536 finished, switching from 2 to 1
Oct 12 18:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 18:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 19:01:01 Inblr-bislinux1 crond(pam_unix)[13537]: session opened for user root by (uid=0)
Oct 12 19:01:01 Inblr-bislinux1 crond[13538]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 19:01:01 Inblr-bislinux1 crond(pam_unix)[13537]: session closed for user root
Oct 12 19:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 19:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 19:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 19:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13547
Oct 12 19:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13547, sig 0 (0), stat 0
Oct 12 19:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13547 finished, switching from 2 to 1
Oct 12 19:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 19:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 19:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 19:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 19:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 19:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13548
Oct 12 19:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13548, sig 0 (0), stat 0
Oct 12 19:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13548 finished, switching from 2 to 1
Oct 12 19:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 19:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 19:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 19:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 19:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 19:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13551
Oct 12 19:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13551, sig 0 (0), stat 0
Oct 12 19:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13551 finished, switching from 2 to 1
Oct 12 19:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 19:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 19:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 19:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 19:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 19:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13552
Oct 12 19:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13552, sig 0 (0), stat 0
Oct 12 19:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13552 finished, switching from 2 to 1
Oct 12 19:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 19:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 20:01:01 Inblr-bislinux1 crond(pam_unix)[13553]: session opened for user root by (uid=0)
Oct 12 20:01:01 Inblr-bislinux1 crond[13554]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 20:01:01 Inblr-bislinux1 crond(pam_unix)[13553]: session closed for user root
Oct 12 20:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 20:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 20:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 20:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13563
Oct 12 20:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13563, sig 0 (0), stat 0
Oct 12 20:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13563 finished, switching from 2 to 1
Oct 12 20:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 20:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 20:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 20:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 20:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 20:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13564
Oct 12 20:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13564, sig 0 (0), stat 0
Oct 12 20:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13564 finished, switching from 2 to 1
Oct 12 20:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 20:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 20:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 20:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 20:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 20:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13567
Oct 12 20:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13567, sig 0 (0), stat 0
Oct 12 20:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13567 finished, switching from 2 to 1
Oct 12 20:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 20:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 20:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 20:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 20:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 20:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13568
Oct 12 20:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13568, sig 0 (0), stat 0
Oct 12 20:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13568 finished, switching from 2 to 1
Oct 12 20:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 20:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 21:01:01 Inblr-bislinux1 crond(pam_unix)[13569]: session opened for user root by (uid=0)
Oct 12 21:01:01 Inblr-bislinux1 crond[13570]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 21:01:01 Inblr-bislinux1 crond(pam_unix)[13569]: session closed for user root
Oct 12 21:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 21:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 21:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 21:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13579
Oct 12 21:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13579, sig 0 (0), stat 0
Oct 12 21:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13579 finished, switching from 2 to 1
Oct 12 21:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 21:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 21:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 21:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 21:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 21:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13580
Oct 12 21:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13580, sig 0 (0), stat 0
Oct 12 21:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13580 finished, switching from 2 to 1
Oct 12 21:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 21:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 21:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 21:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 21:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 21:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13583
Oct 12 21:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13583, sig 0 (0), stat 0
Oct 12 21:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13583 finished, switching from 2 to 1
Oct 12 21:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 21:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 21:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 21:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 21:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 21:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13584
Oct 12 21:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13584, sig 0 (0), stat 0
Oct 12 21:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13584 finished, switching from 2 to 1
Oct 12 21:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 21:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 22:01:01 Inblr-bislinux1 crond(pam_unix)[13585]: session opened for user root by (uid=0)
Oct 12 22:01:01 Inblr-bislinux1 crond[13586]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 22:01:01 Inblr-bislinux1 crond(pam_unix)[13585]: session closed for user root
Oct 12 22:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 22:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 22:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 22:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13595
Oct 12 22:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13595, sig 0 (0), stat 0
Oct 12 22:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13595 finished, switching from 2 to 1
Oct 12 22:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 22:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 22:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 22:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 22:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 22:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13596
Oct 12 22:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13596, sig 0 (0), stat 0
Oct 12 22:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13596 finished, switching from 2 to 1
Oct 12 22:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 22:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 22:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 22:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 22:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 22:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13599
Oct 12 22:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13599, sig 0 (0), stat 0
Oct 12 22:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13599 finished, switching from 2 to 1
Oct 12 22:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 22:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 22:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 22:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 22:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 22:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13600
Oct 12 22:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13600, sig 0 (0), stat 0
Oct 12 22:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13600 finished, switching from 2 to 1
Oct 12 22:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 22:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 23:01:01 Inblr-bislinux1 crond(pam_unix)[13601]: session opened for user root by (uid=0)
Oct 12 23:01:01 Inblr-bislinux1 crond[13602]: (root) CMD (run-parts /etc/cron.hourly)
Oct 12 23:01:01 Inblr-bislinux1 crond(pam_unix)[13601]: session closed for user root
Oct 12 23:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 23:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 23:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 23:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13611
Oct 12 23:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13611, sig 0 (0), stat 0
Oct 12 23:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13611 finished, switching from 2 to 1
Oct 12 23:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 23:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 23:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 23:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 23:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 23:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13612
Oct 12 23:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13612, sig 0 (0), stat 0
Oct 12 23:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13612 finished, switching from 2 to 1
Oct 12 23:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 23:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 23:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 23:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 23:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 23:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13615
Oct 12 23:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13615, sig 0 (0), stat 0
Oct 12 23:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13615 finished, switching from 2 to 1
Oct 12 23:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 23:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 12 23:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 12 23:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 12 23:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 12 23:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13616
Oct 12 23:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13616, sig 0 (0), stat 0
Oct 12 23:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13616 finished, switching from 2 to 1
Oct 12 23:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 12 23:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 00:01:01 Inblr-bislinux1 crond(pam_unix)[13617]: session opened for user root by (uid=0)
Oct 13 00:01:01 Inblr-bislinux1 crond[13618]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 00:01:01 Inblr-bislinux1 crond(pam_unix)[13617]: session closed for user root
Oct 13 00:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 00:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 00:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 00:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13627
Oct 13 00:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13627, sig 0 (0), stat 0
Oct 13 00:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13627 finished, switching from 2 to 1
Oct 13 00:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 00:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 00:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 00:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 00:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 00:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13628
Oct 13 00:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13628, sig 0 (0), stat 0
Oct 13 00:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13628 finished, switching from 2 to 1
Oct 13 00:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 00:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 00:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 00:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 00:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 00:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13631
Oct 13 00:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13631, sig 0 (0), stat 0
Oct 13 00:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13631 finished, switching from 2 to 1
Oct 13 00:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 00:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 00:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 00:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 00:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 00:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13632
Oct 13 00:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13632, sig 0 (0), stat 0
Oct 13 00:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13632 finished, switching from 2 to 1
Oct 13 00:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 00:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 01:01:01 Inblr-bislinux1 crond(pam_unix)[13633]: session opened for user root by (uid=0)
Oct 13 01:01:01 Inblr-bislinux1 crond[13634]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 01:01:01 Inblr-bislinux1 crond(pam_unix)[13633]: session closed for user root
Oct 13 01:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 01:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 01:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 01:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13643
Oct 13 01:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13643, sig 0 (0), stat 0
Oct 13 01:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13643 finished, switching from 2 to 1
Oct 13 01:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 01:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 01:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 01:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 01:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 01:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13644
Oct 13 01:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13644, sig 0 (0), stat 0
Oct 13 01:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13644 finished, switching from 2 to 1
Oct 13 01:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 01:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 01:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 01:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 01:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 01:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13647
Oct 13 01:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13647, sig 0 (0), stat 0
Oct 13 01:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13647 finished, switching from 2 to 1
Oct 13 01:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 01:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 01:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 01:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 01:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 01:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13648
Oct 13 01:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13648, sig 0 (0), stat 0
Oct 13 01:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13648 finished, switching from 2 to 1
Oct 13 01:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 01:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 02:01:01 Inblr-bislinux1 crond(pam_unix)[13649]: session opened for user root by (uid=0)
Oct 13 02:01:01 Inblr-bislinux1 crond[13650]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 02:01:01 Inblr-bislinux1 crond(pam_unix)[13649]: session closed for user root
Oct 13 02:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 02:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 02:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 02:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13659
Oct 13 02:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13659, sig 0 (0), stat 0
Oct 13 02:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13659 finished, switching from 2 to 1
Oct 13 02:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 02:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 02:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 02:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 02:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 02:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13660
Oct 13 02:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13660, sig 0 (0), stat 0
Oct 13 02:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13660 finished, switching from 2 to 1
Oct 13 02:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 02:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 02:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 02:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 02:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 02:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13663
Oct 13 02:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13663, sig 0 (0), stat 0
Oct 13 02:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13663 finished, switching from 2 to 1
Oct 13 02:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 02:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 02:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 02:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 02:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 02:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13664
Oct 13 02:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13664, sig 0 (0), stat 0
Oct 13 02:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13664 finished, switching from 2 to 1
Oct 13 02:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 02:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 03:01:01 Inblr-bislinux1 crond(pam_unix)[13665]: session opened for user root by (uid=0)
Oct 13 03:01:01 Inblr-bislinux1 crond[13666]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 03:01:01 Inblr-bislinux1 crond(pam_unix)[13665]: session closed for user root
Oct 13 03:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 03:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 03:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 03:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13675
Oct 13 03:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13675, sig 0 (0), stat 0
Oct 13 03:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13675 finished, switching from 2 to 1
Oct 13 03:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 03:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 03:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 03:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 03:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 03:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13676
Oct 13 03:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13676, sig 0 (0), stat 0
Oct 13 03:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13676 finished, switching from 2 to 1
Oct 13 03:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 03:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 03:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 03:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 03:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 03:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13679
Oct 13 03:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13679, sig 0 (0), stat 0
Oct 13 03:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13679 finished, switching from 2 to 1
Oct 13 03:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 03:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 03:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 03:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 03:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 03:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=13680
Oct 13 03:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 13680, sig 0 (0), stat 0
Oct 13 03:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 13680 finished, switching from 2 to 1
Oct 13 03:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 03:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 04:01:01 Inblr-bislinux1 crond(pam_unix)[13681]: session opened for user root by (uid=0)
Oct 13 04:01:01 Inblr-bislinux1 crond[13682]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 04:01:01 Inblr-bislinux1 crond(pam_unix)[13681]: session closed for user root
Oct 13 04:02:01 Inblr-bislinux1 crond(pam_unix)[13691]: session opened for user root by (uid=0)
Oct 13 04:02:01 Inblr-bislinux1 crond[13692]: (root) CMD (run-parts /etc/cron.daily)
Oct 13 04:02:16 Inblr-bislinux1 sendmail[14003]: j9CN2GaN014003: from=root, size=1414, class=0, nrcpts=1, msgid=<200510122302.j9CN2GaN014003@localhost.localdomain>, relay=root@localhost
Oct 13 04:02:16 Inblr-bislinux1 sendmail[14005]: warning: /etc/hosts.allow, line 7: missing ":" separator
Oct 13 04:02:16 Inblr-bislinux1 sendmail[14005]: j9CN2G04014005: from=<root@localhost.localdomain>, size=1720, class=0, nrcpts=1, msgid=<200510122302.j9CN2GaN014003@localhost.localdomain>, proto=ESMTP, daemon=MTA, relay=localhost.localdomain [127.0.0.1]
Oct 13 04:02:16 Inblr-bislinux1 sendmail[14003]: j9CN2GaN014003: to=root, ctladdr=root (0/0), delay=00:00:00, xdelay=00:00:00, mailer=relay, pri=31414, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (j9CN2G04014005 Message accepted for delivery)
Oct 13 04:02:16 Inblr-bislinux1 sendmail[14006]: j9CN2G04014005: to=<root@localhost.localdomain>, ctladdr=<root@localhost.localdomain> (0/0), delay=00:00:00, xdelay=00:00:00, mailer=local, pri=31957, dsn=2.0.0, stat=Sent
Oct 13 04:02:17 Inblr-bislinux1 anacron[14094]: Updated timestamp for job `cron.daily' to 2005-10-13
Oct 13 04:02:21 Inblr-bislinux1 crond(pam_unix)[13691]: session closed for user root
Oct 13 04:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 04:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 04:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 04:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14153
Oct 13 04:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14153, sig 0 (0), stat 0
Oct 13 04:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14153 finished, switching from 2 to 1
Oct 13 04:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 04:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 04:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 04:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 04:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 04:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14154
Oct 13 04:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14154, sig 0 (0), stat 0
Oct 13 04:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14154 finished, switching from 2 to 1
Oct 13 04:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 04:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 04:32:16 Inblr-bislinux1 automount[12507]: handle_packet: type = 0
Oct 13 04:32:16 Inblr-bislinux1 automount[12507]: handle_packet_missing: token 116, name Inblr-bislinux1.eu.uis.unisys.com
Oct 13 04:32:16 Inblr-bislinux1 automount[12507]: attempting to mount entry /net/Inblr-bislinux1.eu.uis.unisys.com
Oct 13 04:32:16 Inblr-bislinux1 automount[14179]: failed to mount /net/Inblr-bislinux1.eu.uis.unisys.com
Oct 13 04:32:16 Inblr-bislinux1 automount[14179]: umount_multi: path=/net/Inblr-bislinux1.eu.uis.unisys.com incl=1
Oct 13 04:32:16 Inblr-bislinux1 automount[12507]: handle_child: got pid 14179, sig 0 (0), stat 1
Oct 13 04:32:16 Inblr-bislinux1 automount[12507]: sig_child: found pending iop pid 14179: signalled 0 (sig 0), exit status 1
Oct 13 04:32:16 Inblr-bislinux1 automount[12507]: send_fail: token=116
Oct 13 04:32:17 Inblr-bislinux1 sendmail[14184]: j9CNWGh8014184: from=root, size=581, class=0, nrcpts=1, msgid=<200510122332.j9CNWGh8014184@localhost.localdomain>, relay=root@localhost
Oct 13 04:32:17 Inblr-bislinux1 sendmail[14185]: warning: /etc/hosts.allow, line 7: missing ":" separator
Oct 13 04:32:17 Inblr-bislinux1 sendmail[14185]: j9CNWHvD014185: from=<root@localhost.localdomain>, size=887, class=0, nrcpts=1, msgid=<200510122332.j9CNWGh8014184@localhost.localdomain>, proto=ESMTP, daemon=MTA, relay=localhost.localdomain [127.0.0.1]
Oct 13 04:32:17 Inblr-bislinux1 sendmail[14184]: j9CNWGh8014184: to=root, ctladdr=root (0/0), delay=00:00:01, xdelay=00:00:00, mailer=relay, pri=30581, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (j9CNWHvD014185 Message accepted for delivery)
Oct 13 04:32:17 Inblr-bislinux1 sendmail[14186]: j9CNWHvD014185: to=<root@localhost.localdomain>, ctladdr=<root@localhost.localdomain> (0/0), delay=00:00:00, xdelay=00:00:00, mailer=local, pri=31125, dsn=2.0.0, stat=Sent
Oct 13 04:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 04:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 04:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 04:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14188
Oct 13 04:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14188, sig 0 (0), stat 0
Oct 13 04:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14188 finished, switching from 2 to 1
Oct 13 04:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 04:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 04:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 04:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 04:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 04:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14189
Oct 13 04:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14189, sig 0 (0), stat 0
Oct 13 04:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14189 finished, switching from 2 to 1
Oct 13 04:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 04:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 05:01:01 Inblr-bislinux1 crond(pam_unix)[14190]: session opened for user root by (uid=0)
Oct 13 05:01:01 Inblr-bislinux1 crond[14191]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 05:01:01 Inblr-bislinux1 crond(pam_unix)[14190]: session closed for user root
Oct 13 05:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 05:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 05:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 05:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14200
Oct 13 05:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14200, sig 0 (0), stat 0
Oct 13 05:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14200 finished, switching from 2 to 1
Oct 13 05:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 05:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 05:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 05:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 05:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 05:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14201
Oct 13 05:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14201, sig 0 (0), stat 0
Oct 13 05:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14201 finished, switching from 2 to 1
Oct 13 05:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 05:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 05:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 05:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 05:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 05:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14204
Oct 13 05:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14204, sig 0 (0), stat 0
Oct 13 05:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14204 finished, switching from 2 to 1
Oct 13 05:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 05:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 05:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 05:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 05:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 05:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14205
Oct 13 05:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14205, sig 0 (0), stat 0
Oct 13 05:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14205 finished, switching from 2 to 1
Oct 13 05:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 05:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 06:01:01 Inblr-bislinux1 crond(pam_unix)[14206]: session opened for user root by (uid=0)
Oct 13 06:01:01 Inblr-bislinux1 crond[14207]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 06:01:01 Inblr-bislinux1 crond(pam_unix)[14206]: session closed for user root
Oct 13 06:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 06:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 06:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 06:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14216
Oct 13 06:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14216, sig 0 (0), stat 0
Oct 13 06:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14216 finished, switching from 2 to 1
Oct 13 06:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 06:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 06:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 06:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 06:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 06:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14217
Oct 13 06:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14217, sig 0 (0), stat 0
Oct 13 06:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14217 finished, switching from 2 to 1
Oct 13 06:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 06:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 06:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 06:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 06:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 06:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14220
Oct 13 06:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14220, sig 0 (0), stat 0
Oct 13 06:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14220 finished, switching from 2 to 1
Oct 13 06:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 06:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 06:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 06:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 06:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 06:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14221
Oct 13 06:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14221, sig 0 (0), stat 0
Oct 13 06:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14221 finished, switching from 2 to 1
Oct 13 06:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 06:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 07:01:01 Inblr-bislinux1 crond(pam_unix)[14222]: session opened for user root by (uid=0)
Oct 13 07:01:01 Inblr-bislinux1 crond[14223]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 07:01:01 Inblr-bislinux1 crond(pam_unix)[14222]: session closed for user root
Oct 13 07:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 07:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 07:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 07:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14232
Oct 13 07:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14232, sig 0 (0), stat 0
Oct 13 07:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14232 finished, switching from 2 to 1
Oct 13 07:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 07:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 07:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 07:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 07:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 07:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14233
Oct 13 07:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14233, sig 0 (0), stat 0
Oct 13 07:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14233 finished, switching from 2 to 1
Oct 13 07:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 07:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 07:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 07:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 07:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 07:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14236
Oct 13 07:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14236, sig 0 (0), stat 0
Oct 13 07:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14236 finished, switching from 2 to 1
Oct 13 07:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 07:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 07:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 07:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 07:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 07:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14237
Oct 13 07:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14237, sig 0 (0), stat 0
Oct 13 07:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14237 finished, switching from 2 to 1
Oct 13 07:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 07:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 08:01:01 Inblr-bislinux1 crond(pam_unix)[14238]: session opened for user root by (uid=0)
Oct 13 08:01:01 Inblr-bislinux1 crond[14239]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 08:01:01 Inblr-bislinux1 crond(pam_unix)[14238]: session closed for user root
Oct 13 08:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 08:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 08:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 08:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14248
Oct 13 08:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14248, sig 0 (0), stat 0
Oct 13 08:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14248 finished, switching from 2 to 1
Oct 13 08:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 08:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 08:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 08:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 08:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 08:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14249
Oct 13 08:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14249, sig 0 (0), stat 0
Oct 13 08:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14249 finished, switching from 2 to 1
Oct 13 08:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 08:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 08:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 08:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 08:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 08:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14252
Oct 13 08:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14252, sig 0 (0), stat 0
Oct 13 08:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14252 finished, switching from 2 to 1
Oct 13 08:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 08:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 08:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 08:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 08:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 08:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14253
Oct 13 08:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14253, sig 0 (0), stat 0
Oct 13 08:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14253 finished, switching from 2 to 1
Oct 13 08:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 08:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 09:01:01 Inblr-bislinux1 crond(pam_unix)[14254]: session opened for user root by (uid=0)
Oct 13 09:01:01 Inblr-bislinux1 crond[14255]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 09:01:01 Inblr-bislinux1 crond(pam_unix)[14254]: session closed for user root
Oct 13 09:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 09:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 09:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 09:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14264
Oct 13 09:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14264, sig 0 (0), stat 0
Oct 13 09:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14264 finished, switching from 2 to 1
Oct 13 09:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 09:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 09:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 09:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 09:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 09:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14265
Oct 13 09:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14265, sig 0 (0), stat 0
Oct 13 09:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14265 finished, switching from 2 to 1
Oct 13 09:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 09:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 09:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 09:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 09:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 09:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14268
Oct 13 09:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14268, sig 0 (0), stat 0
Oct 13 09:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14268 finished, switching from 2 to 1
Oct 13 09:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 09:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 09:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 09:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 09:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 09:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14269
Oct 13 09:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14269, sig 0 (0), stat 0
Oct 13 09:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14269 finished, switching from 2 to 1
Oct 13 09:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 09:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 10:01:01 Inblr-bislinux1 crond(pam_unix)[14270]: session opened for user root by (uid=0)
Oct 13 10:01:01 Inblr-bislinux1 crond[14271]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 10:01:01 Inblr-bislinux1 crond(pam_unix)[14270]: session closed for user root
Oct 13 10:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 10:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 10:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 10:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14280
Oct 13 10:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14280, sig 0 (0), stat 0
Oct 13 10:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14280 finished, switching from 2 to 1
Oct 13 10:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 10:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 10:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 10:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 10:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 10:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14281
Oct 13 10:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14281, sig 0 (0), stat 0
Oct 13 10:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14281 finished, switching from 2 to 1
Oct 13 10:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 10:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 10:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 10:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 10:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 10:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14284
Oct 13 10:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14284, sig 0 (0), stat 0
Oct 13 10:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14284 finished, switching from 2 to 1
Oct 13 10:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 10:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 10:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 10:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 10:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 10:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14285
Oct 13 10:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14285, sig 0 (0), stat 0
Oct 13 10:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14285 finished, switching from 2 to 1
Oct 13 10:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 10:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 11:01:01 Inblr-bislinux1 crond(pam_unix)[14286]: session opened for user root by (uid=0)
Oct 13 11:01:01 Inblr-bislinux1 crond[14287]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 11:01:01 Inblr-bislinux1 crond(pam_unix)[14286]: session closed for user root
Oct 13 11:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 11:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 11:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 11:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14296
Oct 13 11:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14296, sig 0 (0), stat 0
Oct 13 11:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14296 finished, switching from 2 to 1
Oct 13 11:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 11:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 11:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 11:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 11:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 11:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14297
Oct 13 11:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14297, sig 0 (0), stat 0
Oct 13 11:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14297 finished, switching from 2 to 1
Oct 13 11:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 11:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 11:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 11:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 11:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 11:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14300
Oct 13 11:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14300, sig 0 (0), stat 0
Oct 13 11:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14300 finished, switching from 2 to 1
Oct 13 11:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 11:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 11:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 11:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 11:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 11:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14301
Oct 13 11:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14301, sig 0 (0), stat 0
Oct 13 11:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14301 finished, switching from 2 to 1
Oct 13 11:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 11:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 12:01:01 Inblr-bislinux1 crond(pam_unix)[14302]: session opened for user root by (uid=0)
Oct 13 12:01:01 Inblr-bislinux1 crond[14303]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 12:01:01 Inblr-bislinux1 crond(pam_unix)[14302]: session closed for user root
Oct 13 12:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 12:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 12:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 12:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14312
Oct 13 12:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14312, sig 0 (0), stat 0
Oct 13 12:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14312 finished, switching from 2 to 1
Oct 13 12:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 12:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 12:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 12:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 12:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 12:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14313
Oct 13 12:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14313, sig 0 (0), stat 0
Oct 13 12:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14313 finished, switching from 2 to 1
Oct 13 12:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 12:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 12:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 12:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 12:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 12:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14316
Oct 13 12:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14316, sig 0 (0), stat 0
Oct 13 12:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14316 finished, switching from 2 to 1
Oct 13 12:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 12:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 12:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 12:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 12:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 12:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14317
Oct 13 12:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14317, sig 0 (0), stat 0
Oct 13 12:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14317 finished, switching from 2 to 1
Oct 13 12:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 12:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 13:01:01 Inblr-bislinux1 crond(pam_unix)[14318]: session opened for user root by (uid=0)
Oct 13 13:01:01 Inblr-bislinux1 crond[14319]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 13:01:01 Inblr-bislinux1 crond(pam_unix)[14318]: session closed for user root
Oct 13 13:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 13:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 13:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 13:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14328
Oct 13 13:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14328, sig 0 (0), stat 0
Oct 13 13:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14328 finished, switching from 2 to 1
Oct 13 13:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 13:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 13:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 13:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 13:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 13:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14329
Oct 13 13:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14329, sig 0 (0), stat 0
Oct 13 13:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14329 finished, switching from 2 to 1
Oct 13 13:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 13:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 13:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 13:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 13:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 13:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14332
Oct 13 13:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14332, sig 0 (0), stat 0
Oct 13 13:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14332 finished, switching from 2 to 1
Oct 13 13:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 13:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 13:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 13:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 13:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 13:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14333
Oct 13 13:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14333, sig 0 (0), stat 0
Oct 13 13:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14333 finished, switching from 2 to 1
Oct 13 13:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 13:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 14:01:01 Inblr-bislinux1 crond(pam_unix)[14334]: session opened for user root by (uid=0)
Oct 13 14:01:01 Inblr-bislinux1 crond[14335]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 14:01:01 Inblr-bislinux1 crond(pam_unix)[14334]: session closed for user root
Oct 13 14:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 14:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 14:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 14:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14344
Oct 13 14:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14344, sig 0 (0), stat 0
Oct 13 14:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14344 finished, switching from 2 to 1
Oct 13 14:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 14:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 14:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 14:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 14:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 14:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14345
Oct 13 14:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14345, sig 0 (0), stat 0
Oct 13 14:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14345 finished, switching from 2 to 1
Oct 13 14:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 14:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 14:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 14:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 14:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 14:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14348
Oct 13 14:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14348, sig 0 (0), stat 0
Oct 13 14:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14348 finished, switching from 2 to 1
Oct 13 14:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 14:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 14:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 14:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 14:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 14:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14349
Oct 13 14:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14349, sig 0 (0), stat 0
Oct 13 14:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14349 finished, switching from 2 to 1
Oct 13 14:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 14:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 15:01:01 Inblr-bislinux1 crond(pam_unix)[14350]: session opened for user root by (uid=0)
Oct 13 15:01:01 Inblr-bislinux1 crond[14351]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 15:01:01 Inblr-bislinux1 crond(pam_unix)[14350]: session closed for user root
Oct 13 15:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 15:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 15:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 15:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14360
Oct 13 15:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14360, sig 0 (0), stat 0
Oct 13 15:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14360 finished, switching from 2 to 1
Oct 13 15:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 15:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 15:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 15:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 15:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 15:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14361
Oct 13 15:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14361, sig 0 (0), stat 0
Oct 13 15:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14361 finished, switching from 2 to 1
Oct 13 15:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 15:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 15:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 15:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 15:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 15:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14364
Oct 13 15:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14364, sig 0 (0), stat 0
Oct 13 15:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14364 finished, switching from 2 to 1
Oct 13 15:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 15:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 15:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 15:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 15:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 15:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14365
Oct 13 15:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14365, sig 0 (0), stat 0
Oct 13 15:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14365 finished, switching from 2 to 1
Oct 13 15:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 15:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 16:01:01 Inblr-bislinux1 crond(pam_unix)[14366]: session opened for user root by (uid=0)
Oct 13 16:01:01 Inblr-bislinux1 crond[14367]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 16:01:01 Inblr-bislinux1 crond(pam_unix)[14366]: session closed for user root
Oct 13 16:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 16:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 16:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 16:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14376
Oct 13 16:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14376, sig 0 (0), stat 0
Oct 13 16:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14376 finished, switching from 2 to 1
Oct 13 16:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 16:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 16:20:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 16:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 16:20:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 16:20:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14377
Oct 13 16:20:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14377, sig 0 (0), stat 0
Oct 13 16:20:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14377 finished, switching from 2 to 1
Oct 13 16:20:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 16:20:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 16:35:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 16:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 16:35:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 16:35:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14380
Oct 13 16:35:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14380, sig 0 (0), stat 0
Oct 13 16:35:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14380 finished, switching from 2 to 1
Oct 13 16:35:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 16:35:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 16:50:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 16:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 16:50:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 16:50:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14381
Oct 13 16:50:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14381, sig 0 (0), stat 0
Oct 13 16:50:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14381 finished, switching from 2 to 1
Oct 13 16:50:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 16:50:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
Oct 13 17:01:01 Inblr-bislinux1 crond(pam_unix)[14382]: session opened for user root by (uid=0)
Oct 13 17:01:01 Inblr-bislinux1 crond[14383]: (root) CMD (run-parts /etc/cron.hourly)
Oct 13 17:01:01 Inblr-bislinux1 crond(pam_unix)[14382]: session closed for user root
Oct 13 17:05:44 Inblr-bislinux1 automount[12507]: sig 14 switching from 1 to 2
Oct 13 17:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 1, next 2
Oct 13 17:05:44 Inblr-bislinux1 automount[12507]: st_expire(): state = 1
Oct 13 17:05:44 Inblr-bislinux1 automount[12507]: expire_proc: exp_proc=14392
Oct 13 17:05:44 Inblr-bislinux1 automount[12507]: handle_child: got pid 14392, sig 0 (0), stat 0
Oct 13 17:05:44 Inblr-bislinux1 automount[12507]: sigchld: exp 14392 finished, switching from 2 to 1
Oct 13 17:05:44 Inblr-bislinux1 automount[12507]: get_pkt: state 2, next 1
Oct 13 17:05:44 Inblr-bislinux1 automount[12507]: st_ready(): state = 2
[-- Attachment #3: Type: text/plain, Size: 140 bytes --]
_______________________________________________
autofs mailing list
autofs@linux.kernel.org
http://linux.kernel.org/mailman/listinfo/autofs
^ permalink raw reply
* Re: [Bluez-devel] hcid patch (remote name and connections)
From: Marcel Holtmann @ 2005-10-13 9:38 UTC (permalink / raw)
To: bluez-devel
In-Reply-To: <e1effdeb0510121414u3c1ae79k98c9ba17e99f4b31@mail.gmail.com>
Hi Claudio,
> This is the patch to add remote name and display connections. I fixed
> a bitwise operation in the error message function and the dbus message
> handler.
>
> Apply the segmentation fault patch before!
I applied both patches, but you should start looking at my changes to
your previous patch. There are some ways to code the if clauses a little
bit better using goto. This will make the code better readable. I might
fix this up later anyhow, but at the moment my Internet connection is
limited.
Regards
Marcel
-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel
^ permalink raw reply
* Re: [Xenomai-core] Future of fusion
From: Herman Bruyninckx @ 2005-10-13 9:34 UTC (permalink / raw)
Cc: xenomai
In-Reply-To: <434E2510.9060502@domain.hid>
On Thu, 13 Oct 2005, Philippe Gerum wrote:
> Herman Bruyninckx wrote:
>> On Thu, 13 Oct 2005, Gilles Chanteperdrix wrote:
>>
>>> Herman Bruyninckx wrote:
>>> > On Thu, 13 Oct 2005, Philippe Gerum wrote:
>>> >
>>> > [...]
>>> > > - New skins: Any new colors for the "chameleon"?
>>> > "Perfect POSIX" is, to me, more important than new skins. "Perfect"
>>> means,
>>> > among other things, that the interference problem with the Posix thread
>>> > library (libraries) under Linux is solved.
>>>
>>> What is wrong with the current implementation ?
>>
>> [...]
>>
>>> But I assumed the
>>> interference with the posix thread library was solved. Could you
>>> elaborate a bit more on the issues you observed ?
>>
>>
>> Well, if this problem is solved, I'm very happy :-) And maybe I look at the
>> wrong places, but where do I find a succint explanation of the solution?
>>
>
> Well, what's your question first? :o>
>
Sorry if that was not clear.
The question is: how is the following problem solved? Where the problem is
as follows: using Posix threads in realtime requires another library than
the standard NPTL library that Linux uses (at least, I think you require
another library), but how do you make sure to link to the correct library?
Or is NPTL realtime safe?
Herman
--
K.U.Leuven, Mechanical Eng., Mechatronics & Robotics Research Group
<http://people.mech.kuleuven.be/~bruyninc> Tel: +32 16 322480
Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm
^ permalink raw reply
* Need a method to reset the ip_conntrack_count
From: Vincent @ 2005-10-13 9:32 UTC (permalink / raw)
To: netfilter
In-Reply-To: <002601c5b390$1d641d10$fefefe0a@jesseh7ht76e8n>
Hello folks,
I have encountered one question. Does it have a way to flush the
conntrack table beside reloading the ip_conntrack module
(because I use the method of building into kernel.
As far as I know, the current conntrack number was recorded in the
/proc/sys/net/ipv4/netfilter/ip_conntrack_count
So I want to know whether it exists a method or not to reset the current
counter of conntrack.
My Enviroment:
Kenel: 2.6.10
Iptables: 1.2.9
Any hint are appreciated.
Vincent
^ permalink raw reply
* Re: [Bluez-users] Logitech diNovo hub not recognized
From: Marcel Holtmann @ 2005-10-13 9:30 UTC (permalink / raw)
To: bluez-users
In-Reply-To: <434D4765.603@imap.cc>
[-- Attachment #1: Type: text/plain, Size: 1426 bytes --]
Hi Alex,
> Thanks much for your response. I compiled and installed bluez-libs-2.21
> and bluez-utils-2.21, removing the corresponding Fedora binary packages.
> Unfortunately, hid2hci and hciconfig -a produced exactly the same results.
>
> Here is the output of /proc/bus/usb/devices, with only the Logitech
> receiver inserted:
>
> T: Bus=02 Lev=02 Prnt=02 Port=01 Cnt=02 Dev#= 3 Spd=1.5 MxCh= 0
> D: Ver= 1.10 Cls=00(>ifc ) Sub=00 Prot=00 MxPS= 8 #Cfgs= 1
> P: Vendor=046d ProdID=c50c Rev=22.40
> S: Manufacturer=Logitech
> S: Product=USB Receiver
> C:* #Ifs= 2 Cfg#= 1 Atr=a0 MxPwr= 98mA
> I: If#= 0 Alt= 0 #EPs= 1 Cls=03(HID ) Sub=01 Prot=01 Driver=usbhid
> E: Ad=81(I) Atr=03(Int.) MxPS= 8 Ivl=10ms
> I: If#= 1 Alt= 0 #EPs= 1 Cls=03(HID ) Sub=01 Prot=02 Driver=usbhid
> E: Ad=82(I) Atr=03(Int.) MxPS= 8 Ivl=10ms
>
> T: Bus=01 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=480 MxCh=10
> B: Alloc= 0/800 us ( 0%), #Int= 0, #Iso= 0
> D: Ver= 2.00 Cls=09(hub ) Sub=00 Prot=01 MxPS= 8 #Cfgs= 1
> P: Vendor=0000 ProdID=0000 Rev= 2.06
> S: Manufacturer=Linux 2.6.13-1.1526_av0 ehci_hcd
> S: Product=EHCI Host Controller
> S: SerialNumber=0000:00:02.1
> C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr= 0mA
> I: If#= 0 Alt= 0 #EPs= 1 Cls=09(hub ) Sub=00 Prot=00 Driver=hub
> E: Ad=81(I) Atr=03(Int.) MxPS= 2 Ivl=256ms
try the attached patch. Hopefully they haven't changed the protocol.
Regards
Marcel
[-- Attachment #2: patch --]
[-- Type: text/x-patch, Size: 478 bytes --]
Index: hid2hci.c
===================================================================
RCS file: /cvsroot/bluez/utils/tools/hid2hci.c,v
retrieving revision 1.6
diff -u -r1.6 hid2hci.c
--- hid2hci.c 5 Jul 2005 21:15:53 -0000 1.6
+++ hid2hci.c 13 Oct 2005 09:28:09 -0000
@@ -226,6 +226,7 @@
{ HCI, 0x046d, 0xc703, switch_logitech },
{ HCI, 0x046d, 0xc704, switch_logitech },
{ HCI, 0x046d, 0xc705, switch_logitech },
+ { HCI, 0x046d, 0xc50c, switch_logitech },
{ -1 }
};
^ permalink raw reply
* ip_queue: setting verdict blocks
From: Ilkka Pietikäinen @ 2005-10-13 9:30 UTC (permalink / raw)
To: netfilter-devel
Hello,
We have seen this in two different environments: RedHat ES3 and Debian Sarge
(with the default kernels).
We have an application that handles IP packets from ip_queue module (and
basically DROP/ACCEPT each packet). Sometimer after the system has been up
and running for few hours the application can no longer set the verdict for
the packet (it seems that the sendmsg is blocking). Restarting of the
application does not help and only way to get system back working is to rmmod
all iptables related modules or reboot.
Some questions:
a) What could have caused sendmsg to block?
b) Is there some way to debug this problem?
Ilkka
^ permalink raw reply
* Re: [OT] URL rewriting
From: Emilio Casbas @ 2005-10-13 9:28 UTC (permalink / raw)
To: dleangen; +Cc: netfilter
In-Reply-To: <NEBBKBPLMLNABNADCIPAGEOCBIAB.dleangen@canada.com>
David Leangen wrote:
>Ok, this topic is now officially OT...
>
>
>
>>Better to use a HTTP proxy.
>>
>>
>>
>>>What do you recommend?
>>>
>>>
>>Well, Squid obviously, but then I am perhaps somewhat biased..
>>
>>
>
>
>Why do you recommend Squid? I am very interested.
>
>
Obvious ;-)
http://www.squid-cache.org/volunteers.html.
>I briefly checked out both, and this is what I concluded:
>
> - Squid seems more complicated to set up. Even after
> reading the docs, I still have no idea how to configure this.
>
>
http://www.squid-cache.org/Doc/FAQ/FAQ-15.html
> - I asked how to do this on the mailing list, but I guess my
> question was too basic and nobody was interested in
> replying
>
>
patience,
> - Squid can do LOTS of stuff, but all I want is a reverse proxy
>
>
http://www.squid-cache.org/Doc/FAQ/FAQ-20.html
> - I already have an Apache installation and I know how to use
> reverse proxying
>
>
>Despite this, I'm always interested in the "best" solution... I would indeed
>be very curious to know why you think Squid is the best choice.
>
>
>
My personal opinion is that.
I have using squid for three years ago in many environments
chain proxy, reverse proxy, ssl proxy, filtering proxy...
and i`m agree too with Henrik.
Thanks
Emilio C.
^ permalink raw reply
* RE: PCIe hotplug on far PCIe switch ports
From: Thomas Schäfer @ 2005-10-13 9:25 UTC (permalink / raw)
To: linux-hotplug
In-Reply-To: <D9F0B2AD4531B0449D51C1F09199D4840E0DAE@mail.kom-saarbruecken.com>
> -----Original Message-----
> From: Rajesh Shah [mailto:rajesh.shah@intel.com]
> Sent: Thursday, October 13, 2005 12:17 AM
> To: Thomas Schäfer
> Cc: linux-hotplug-devel@lists.sourceforge.net;
> linux-kernel@vger.kernel.org
> Subject: Re: PCIe hotplug on far PCIe switch ports
>
> When attempting the hot-add, the pciehp driver clobbers the
> rom base address to 0. When pciehp later calls
> pci_scan_slot() -> pci_read_bases(), the device's resource
> structure records a 0 rom base address but a non-zero size.
> This in turn causes the kernel to believe this was done to
> flag a resource conflict.
>
> Does this patch fix the problem?
>
> Signed-off-by: rajesh.shah@intel.com
>
> arch/i386/pci/i386.c | 5 +++--
> 1 files changed, 3 insertions(+), 2 deletions(-)
>
> Index: linux-2.6.14-rc4/arch/i386/pci/i386.c
> =================================> --- linux-2.6.14-rc4.orig/arch/i386/pci/i386.c
> +++ linux-2.6.14-rc4/arch/i386/pci/i386.c
> @@ -221,6 +221,9 @@ int pcibios_enable_resources(struct pci_
> continue;
>
> r = &dev->resource[idx];
> + if ((idx = PCI_ROM_RESOURCE) &&
> + (!(r->flags & IORESOURCE_ROM_ENABLE)))
> + continue;
> if (!r->start && r->end) {
> printk(KERN_ERR "PCI: Device %s not
> available because of resource collisions\n", pci_name(dev));
> return -EINVAL;
> @@ -230,8 +233,6 @@ int pcibios_enable_resources(struct pci_
> if (r->flags & IORESOURCE_MEM)
> cmd |= PCI_COMMAND_MEMORY;
> }
> - if (dev->resource[PCI_ROM_RESOURCE].start)
> - cmd |= PCI_COMMAND_MEMORY;
> if (cmd != old_cmd) {
> printk("PCI: Enabling device %s (%04x ->
> %04x)\n", pci_name(dev), old_cmd, cmd);
> pci_write_config_word(dev, PCI_COMMAND, cmd);
>
>
Hi Rajesh,
Yes, the patch solves the resource conflicts, but now I'm running into IRQ mapping problems:
pciehp: !!!!event_thread sleeping
irq 16: nobody cared (try booting with the "irqpoll" option)
[<c0139954>] __report_bad_irq+0x24/0x80
[<c0139a6b>] note_interrupt+0x8b/0xe0
[<c013934a>] __do_IRQ+0xda/0xf0
[<c0104b76>] do_IRQ+0x36/0x70
[<c0104b7b>] do_IRQ+0x3b/0x70
[<c01035d6>] common_interrupt+0x1a/0x20
[<c0100c50>] default_idle+0x0/0x30
[<c0100c73>] default_idle+0x23/0x30
[<c0100d02>] cpu_idle+0x42/0x60
[<c03bc83f>] start_kernel+0x16f/0x1b0
[<c03bc380>] unknown_bootoption+0x0/0x1e0
handlers:
[<c0271c50>] (usb_hcd_irq+0x0/0x50)
[<f8aadea0>] (pcie_isr+0x0/0x690 [pciehp])
Disabling IRQ #16
Message from syslogd@amceval at Thu Oct 13 10:38:36 2005 ...
amceval kernel: Disabling IRQ #16
[root@amceval hotplug]# cat /proc/interrupts
CPU0
0: 609080 IO-APIC-edge timer
2: 0 XT-PIC cascade
4: 2457 IO-APIC-edge serial
8: 1 IO-APIC-edge rtc
10: 0 XT-PIC eth0
14: 0 IO-APIC-edge libata
15: 8540 IO-APIC-edge ide1
16: 200000 IO-APIC-level uhci_hcd:usb2, pciehp
17: 2 IO-APIC-level pciehp, pciehp
18: 4 IO-APIC-level pciehp, pciehp
23: 0 IO-APIC-level ehci_hcd:usb1
NMI: 0
LOC: 608585
ERR: 1
MIS: 0
[root@amceval hotplug]#
Interrupt 10 is registered by the eth0 driver, but the network adapter still asserts interrupt 16. I saw the same behaviour when using kernel 2.6.13.2.
Any ideas?
Thanks,
Thomas Schäfer
P.S: Perhaps we should continue this discussion on the pci hotplug mailing list (where is it hosted?).
-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
Linux-hotplug-devel mailing list http://linux-hotplug.sourceforge.net
Linux-hotplug-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel
^ permalink raw reply
* [U-Boot-Users] [PATCH] eliminate assumptions about dataflash layout
From: Anders Larsen @ 2005-10-13 9:20 UTC (permalink / raw)
To: u-boot
Hi,
the dataflash driver contains a hard-coded partition table which might
suit one particular board (which I doubt, however) but certainly isn't
generally applicable.
Furthermore, it write-protects the first two partitions, which violates
the U-Boot standard of allowing the user enough rope to shoot himself
in the foot.
Besides, the dataflash partitions aren't even on sector boundaries (the
dataflash chips have rather unusual sector sizes; 528 or 1056 bytes,
which makes one wonder what the folks at Atmel are smoking).
The patch below places the entire dataflash in one (writable) partition.
Cheers
Anders
Signed-off-by: Anders Larsen <alarsen@rea.de>
CHANGELOG:
Don't write-protect arbitrary areas of Atmel dataflash
Patch by Anders Larsen, 13 Oct 2005
---
drivers/dataflash.c | 7 ++-----
include/dataflash.h | 4 ++--
2 files changed, 4 insertions(+), 7 deletions(-)
diff --git a/drivers/dataflash.c b/drivers/dataflash.c
index ded0395..a558dba 100644
--- a/drivers/dataflash.c
+++ b/drivers/dataflash.c
@@ -33,10 +33,7 @@ int cs[][CFG_MAX_DATAFLASH_BANKS] = {
/*define the area offsets*/
dataflash_protect_t area_list[NB_DATAFLASH_AREA] = {
- {0, 0x7fff, FLAG_PROTECT_SET}, /* ROM code */
- {0x8000, 0x1ffff, FLAG_PROTECT_SET}, /* u-boot code */
- {0x20000, 0x27fff, FLAG_PROTECT_CLEAR}, /* u-boot environment */
- {0x28000, 0x1fffff, FLAG_PROTECT_CLEAR}, /* data area size to tune */
+ {0, 0x1fffff, FLAG_PROTECT_CLEAR}, /* size tuned below */
};
extern void AT91F_SpiInit (void);
@@ -110,7 +107,7 @@ int AT91F_DataflashInit (void)
break;
}
/* set the last area end to the dataflash size*/
- area_list[NB_DATAFLASH_AREA -1].end =
+ area_list[NB_DATAFLASH_AREA-1].end =
(dataflash_info[i].Device.pages_number *
dataflash_info[i].Device.pages_size)-1;
diff --git a/include/dataflash.h b/include/dataflash.h
index 650454e..825eec6 100644
--- a/include/dataflash.h
+++ b/include/dataflash.h
@@ -37,8 +37,8 @@
#include <asm/arch/hardware.h>
#include "config.h"
-/*number of protected area*/
-#define NB_DATAFLASH_AREA 4
+/*number of areas*/
+#define NB_DATAFLASH_AREA 1
/*define the area structure*/
typedef struct {
^ permalink raw reply related
* Re: [Xenomai-core] Future of fusion
From: Philippe Gerum @ 2005-10-13 9:12 UTC (permalink / raw)
To: Herman Bruyninckx; +Cc: xenomai
In-Reply-To: <Pine.LNX.4.64.0510131049420.5110@domain.hid>
Herman Bruyninckx wrote:
> On Thu, 13 Oct 2005, Gilles Chanteperdrix wrote:
>
>> Herman Bruyninckx wrote:
>> > On Thu, 13 Oct 2005, Philippe Gerum wrote:
>> >
>> > [...]
>> > > - New skins: Any new colors for the "chameleon"?
>> > "Perfect POSIX" is, to me, more important than new skins. "Perfect"
>> means,
>> > among other things, that the interference problem with the Posix thread
>> > library (libraries) under Linux is solved.
>>
>> What is wrong with the current implementation ?
>
> [...]
>
>> But I assumed the
>> interference with the posix thread library was solved. Could you
>> elaborate a bit more on the issues you observed ?
>
>
> Well, if this problem is solved, I'm very happy :-) And maybe I look at the
> wrong places, but where do I find a succint explanation of the solution?
>
Well, what's your question first? :o>
--
Philippe.
^ permalink raw reply
* [Xenomai-core] Re: 2.4 vs 2.6 in embedded space
From: Philippe Gerum @ 2005-10-13 9:11 UTC (permalink / raw)
To: Wolfgang Grandegger; +Cc: xenomai
In-Reply-To: <434E1CCB.4010809@domain.hid>
Wolfgang Grandegger wrote:
> On 10/12/2005 04:39 PM Philippe Gerum wrote:
>
>>Wolfgang Grandegger wrote:
>>
>>>We have linux-2.4.14-rc3 running on all AMCC eval boards (see
>>>http://www.denx.de). But the kernel supported by RTAI/Fusion,
>>>linuxppc-2.6.10rc3, does not boot on Ebony. The main problem is the
>>>missing support for U-Boot but there might be others. And it's simply
>>>not worth the effort to port it, I think.
>>
>>Open question: to your opinion, is 2.6 on low-end embedded hw doomed "by design"
>>and why, or do you think that part of the reluctance to move to 2.6 is mostly
>>explained because 2.4 is just fine and up to the task, IOW it's kind of a "don't
>>fix if it ain't broken" perception?
>
>
> As Wolfgang (Denk) already pointed out, 2.6 is less attractive on low
> end systems, because it's bigger, slower, ... This is also true for
> Xenomai (RTAI/fusion). It's difficult to beat the latency value of the
> old RTAI/RTHAL under 2.4. You need more CPU power and resources, that's
> how thing are going. Nevertheless, compared to the realtime preemption
> patch, Xenomai is _lightweight_ :-).
I think so too; that's the problem with strictly native real-time support in the
kernel: you must end up with some kind of SMPish structure which virtually
exhibits an infinite number of processors (one per task basically), so it's not
going to help reducing the cpu footprints and the various noisy artefacts
implied by the generalized mutex approach (which is otherwise sound, that's no
the issue). This is also why there is still space for real-time extensions,
provided - I think - they run as symbiotically as possible with Linux, so that
we don't end up telling people to ignore they have Linux while running their
apps over it.
As far as Xeno is concerned, we should be able to continue to reduce those
footprints. From my window, I see two aspects we need to work on:
- impact of the Adeos pipelining on cache especially for hw with sluggish
memory bandwidth
- a better placement of the hot data that are accessed inside the fast interrupt
path (mainly those of the scheduler).
Looking at the ppc figures since early 2005 or so, the raw latency has
continuously been reduced, i.e. we went from ~120 us on a Freescale's Icecube
running the user-space test, to 53 us as measured recently with 0.9.1+r8c4. I
did not manage to check again on the Sandpoint (connection problem to the Vlab)
which is very representative of the low-end hw issues we could face [and
basically made me cry when I first looked at the latency reports], but I suspect
that thing might have progressed there too. I've recently ported 0.9.1 over a
Mvista kernel (experimental PREEMPT_RT-like stuff + other patches) on a mpc8541,
and the figures for user-space are ~22 us worst-cast lat.
Of course, this is not what one would call a sluggish low-end hw and I agree
that a more structured design like Xeno can't beat a flat ISR-based design, but
still, in any case, I'm optimistic enough to think that we likely have a margin
of improvement there.
>
> Furthermore I think, that part of the reluctance is also due to
> "development in progress" including features like the realtime
> preemption patch, especially on embedded PowerPC systems. People are
> waiting that things get available and stable.
>
Well, we might all have the same problem here...
--
Philippe.
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.