bug#23516: tail -f

2016-05-16 Thread Bernhard Voelker
On 05/16/2016 08:44 PM, Pádraig Brady wrote:
> On 12/05/16 23:29, Bernhard Voelker wrote:
>> [...] somehow the email didn't
>> reach the list:
>>
>>23...@debbugs.gnu.org:
>>no valid MX hosts found
> 
> Bob had an explanation for what maybe happened here:
> http://lists.gnu.org/archive/html/bug-bash/2016-05/msg00071.html

Thanks for sharing this.

Interesting - I also had problems to reach the coreutils repo
via git:// or ssh:// URLs until yesterday, but now it seems to
work again.

Have a nice day,
Berny






bug#23516: tail -f

2016-05-16 Thread Pádraig Brady

On 12/05/16 23:29, Bernhard Voelker wrote:

On 05/12/2016 10:54 AM, Pádraig Brady wrote:

On 11/05/16 21:35, Alan Aguia wrote:

Hi I have a developement in Azure using docker and Ubuntu, Apache y Php and
I am getting the following error

tail: unrecognized file system type 0xfe534d42 for
'/var/appdata/logs/application.log'. please report this to
bug-coreutils@gnu.org. reverting to polling

I do not know what information do you need?


I'm a bit surprised this wasn't reported until now.
The attached should address this.


+1

I did something very similar in parallel, but somehow the email didn't
reach the list:

   23...@debbugs.gnu.org:
   no valid MX hosts found


Bob had an explanation for what maybe happened here:
http://lists.gnu.org/archive/html/bug-bash/2016-05/msg00071.html





bug#23516: tail -f

2016-05-16 Thread Bernhard Voelker
On 05/12/2016 10:54 AM, Pádraig Brady wrote:
> On 11/05/16 21:35, Alan Aguia wrote:
>> Hi I have a developement in Azure using docker and Ubuntu, Apache y Php and
>> I am getting the following error
>>
>> tail: unrecognized file system type 0xfe534d42 for
>> '/var/appdata/logs/application.log'. please report this to
>> bug-coreutils@gnu.org. reverting to polling
>>
>> I do not know what information do you need?
> 
> I'm a bit surprised this wasn't reported until now.
> The attached should address this.

+1

I did something very similar in parallel, but somehow the email didn't
reach the list:

  23...@debbugs.gnu.org:
  no valid MX hosts found

I also wanted to add some URLs to the commit message, but they are
too long per line:

  A question to the other maintainers: can we use a reliable URL
  shortener?  In this case, I'd probably have referenced these
  in the commit message:

  
https://blogs.msdn.microsoft.com/windowsazurestorage/2014/05/12/introducing-microsoft-azure-file-service/
  
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6fc05c25ca

Does gnu.org provide such an URL shortener?

Have a nice day,
Berny





bug#23516: tail -f

2016-05-13 Thread Pádraig Brady

On 12/05/16 23:29, Bernhard Voelker wrote:

On 05/12/2016 10:54 AM, Pádraig Brady wrote:

On 11/05/16 21:35, Alan Aguia wrote:

Hi I have a developement in Azure using docker and Ubuntu, Apache y Php and
I am getting the following error

tail: unrecognized file system type 0xfe534d42 for
'/var/appdata/logs/application.log'. please report this to
bug-coreutils@gnu.org. reverting to polling

I do not know what information do you need?


I'm a bit surprised this wasn't reported until now.
The attached should address this.


+1

I did something very similar in parallel, but somehow the email didn't
reach the list:

   23...@debbugs.gnu.org:
   no valid MX hosts found

I also wanted to add some URLs to the commit message, but they are
too long per line:

   A question to the other maintainers: can we use a reliable URL
   shortener?  In this case, I'd probably have referenced these
   in the commit message:

   
https://blogs.msdn.microsoft.com/windowsazurestorage/2014/05/12/introducing-microsoft-azure-file-service/
   
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6fc05c25ca

Does gnu.org provide such an URL shortener?


Not that I know of.
Yes long URLs are problematic so a shortener could occasionally be useful





bug#23516: tail -f

2016-05-12 Thread Pádraig Brady

On 11/05/16 21:35, Alan Aguia wrote:

Hi I have a developement in Azure using docker and Ubuntu, Apache y Php and
I am getting the following error

tail: unrecognized file system type 0xfe534d42 for
'/var/appdata/logs/application.log'. please report this to
bug-coreutils@gnu.org. reverting to polling

I do not know what information do you need?


I'm a bit surprised this wasn't reported until now.
The attached should address this.

thanks!
Pádraig

>From 99dd47ec86b508410df64bef2b7bf4922215cf5b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?P=C3=A1draig=20Brady?= 
Date: Thu, 12 May 2016 09:50:48 +0100
Subject: [PATCH] stat,tail: add support for the SMB2 remote file system

* stc/stat.c (human_fstype): Add file system ID definition,
and use "smb2" as the name.
* NEWS (Improvements): Mention the change.
Fixes http://bugs.gnu.org/23516
---
 NEWS   | 7 ---
 src/stat.c | 2 ++
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index 6018aa9..56ab1f1 100644
--- a/NEWS
+++ b/NEWS
@@ -34,9 +34,10 @@ GNU coreutils NEWS-*- outline -*-
 ** Improvements
 
stat and tail now know about "prl_fs" (a parallels file system),
-   "m1fs" (a Plexistor file system), and "wslfs" (Windows Subsystem for Linux).
-   stat -f --format=%T now reports the file system type, and tail -f uses
-   polling for "prl_fs", inotify for "m1fs", and attempts inotify for "wslfs".
+   "m1fs" (a Plexistor file system), "wslfs" (Windows Subsystem for Linux),
+   and "smb2".  stat -f --format=%T now reports the file system type, and
+   tail -f uses polling for "prl_fs" and "smb2", inotify for "m1fs",
+   and attempts inotify for "wslfs".
 
 
 * Noteworthy changes in release 8.25 (2016-01-20) [stable]
diff --git a/src/stat.c b/src/stat.c
index 7a20ff7..8c831b5 100644
--- a/src/stat.c
+++ b/src/stat.c
@@ -434,6 +434,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf)
   return "smackfs";
 case S_MAGIC_SMB: /* 0x517B remote */
   return "smb";
+case S_MAGIC_SMB2: /* 0xFE534D42 remote */
+  return "smb2";
 case S_MAGIC_SNFS: /* 0xBEEFDEAD remote */
   return "snfs";
 case S_MAGIC_SOCKFS: /* 0x534F434B local */
-- 
2.5.5



bug#23516: tail -f

2016-05-11 Thread Alan Aguia
Hi I have a developement in Azure using docker and Ubuntu, Apache y Php and
I am getting the following error

tail: unrecognized file system type 0xfe534d42 for
'/var/appdata/logs/application.log'. please report this to
bug-coreutils@gnu.org. reverting to polling

I do not know what information do you need?

Thanks
Alan.