CINXE.COM

Bug #1855318 “autofs tries to find .xdg-volume-info and autorun....” : Bugs : gvfs

<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <base href="https://bugs.launchpad.net/gvfs/+bug/1855318/+index" /> <meta charset="UTF-8" /> <title>Bug #1855318 “autofs tries to find .xdg-volume-info and autorun....” : Bugs : gvfs</title> <link rel="apple-touch-icon" sizes="180x180" href="/@@/apple-touch-icon.png?v=2022" /> <link rel="icon" type="image/png" sizes="32x32" href="/@@/favicon-32x32.png?v=2022" /> <link rel="icon" type="image/png" sizes="16x16" href="/@@/favicon-16x16.png?v=2022" /> <link rel="manifest" href="/@@/site.webmanifest?v=2022" /> <link rel="mask-icon" href="/@@/safari-pinned-tab.svg?v=2022" color="#e9531f" /> <link rel="shortcut icon" href="/@@/favicon.ico?v=2022" /> <meta name="msapplication-TileColor" content="#da532c" /> <meta name="msapplication-config" content="/@@/browserconfig.xml?v=2022" /> <meta name="theme-color" content="#ffffff" /> <link rel="canonical" href="https://bugs.launchpad.net/bugs/1855318" /> <link rel="alternate" type="application/atom+xml" href="http://feeds.launchpad.net/bugs/1855318/bug.atom" title="Bug 1855318 Feed" /> <link type="text/css" rel="stylesheet" media="screen, print" href="/+icing/rev22ade00ab50b929fac63b8ee7252243aceda294a/combo.css" /> <meta name="description" content="# automount -f -v Starting automounter version 5.1.5, master map /etc/auto.master using kernel protocol version 5.05 mounted indirect on /home/&lt;user&gt;/mnt with timeout 300, freq 75 seconds attempting to mount entry /home/&lt;user&gt;/mnt/.xdg-volume-info key &quot;.xdg-volume-info&quot; not found in map source(s). failed to mount /home/&lt;user&gt;/mnt/.xdg-volume-info attempting to mount entry /home/&lt;user&gt;/mnt/autorun.inf key &quot;autorun.inf&quot; not found in map source(s). failed to mount /home/&lt;user&gt;/mnt/autorun.inf /..." /> <meta property="og:description" content="# automount -f -v Starting automounter version 5.1.5, master map /etc/auto.master using kernel protocol version 5.05 mounted indirect on /home/&lt;user&gt;/mnt with timeout 300, freq 75 seconds attempting to mount entry /home/&lt;user&gt;/mnt/.xdg-volume-info key &quot;.xdg-volume-info&quot; not found in map source(s). failed to mount /home/&lt;user&gt;/mnt/.xdg-volume-info attempting to mount entry /home/&lt;user&gt;/mnt/autorun.inf key &quot;autorun.inf&quot; not found in map source(s). failed to mount /home/&lt;user&gt;/mnt/autorun.inf /..." /> <meta property="og:title" content="Bug #1855318 “autofs tries to find .xdg-volume-info and autorun....” : Bugs : gvfs" /> <meta property="og:type" content="website" /> <meta property="og:image" content="/@@/launchpad-og-image.png" /> <meta property="og:url" content="https://bugs.launchpad.net/bugs/1855318" /> <meta property="og:site_name" content="Launchpad" /> <script type="text/javascript"> var LP = { cache: {}, links: {} }; </script> <script type="text/javascript">var cookie_scope = '; Path=/; Secure; Domain=.launchpad.net';</script> <script type="text/javascript" src="/+combo/rev22ade00ab50b929fac63b8ee7252243aceda294a/?yui/yui/yui-min.js&amp;lp/meta.js&amp;yui/loader/loader-min.js"></script> <script type="text/javascript"> var raw = null; if (LP.devmode) { raw = 'raw'; } YUI.GlobalConfig = { combine: true, comboBase: '/+combo/rev22ade00ab50b929fac63b8ee7252243aceda294a/?', root: 'yui/', filter: raw, debug: false, fetchCSS: false, maxURLLength: 2000, groups: { lp: { combine: true, base: '/+combo/rev22ade00ab50b929fac63b8ee7252243aceda294a/?lp/', comboBase: '/+combo/rev22ade00ab50b929fac63b8ee7252243aceda294a/?', root: 'lp/', // comes from including lp/meta.js modules: LP_MODULES, fetchCSS: false } } }</script> <script type="text/javascript"> // we need this to create a single YUI instance all events and code // talks across. All instances of YUI().use should be based off of // LPJS instead. var LPJS = new YUI(); </script> <script id="base-layout-load-scripts" type="text/javascript"> //<![CDATA[ LPJS.use('base', 'node', 'console', 'event', 'oop', 'lp', 'lp.app.foldables','lp.app.sorttable', 'lp.app.inlinehelp', 'lp.app.links', 'lp.bugs.bugtask_index', 'lp.bugs.subscribers', 'lp.app.ellipsis', 'lp.code.branchmergeproposal.diff', 'lp.views.global', function(Y) { Y.on("domready", function () { var global_view = new Y.lp.views.Global(); global_view.render(); Y.lp.app.sorttable.SortTable.init(); Y.lp.app.inlinehelp.init_help(); Y.lp.activate_collapsibles(); Y.lp.app.foldables.activate(); Y.lp.app.links.check_valid_lp_links(); }); Y.on('lp:context:web_link:changed', function(e) { window.location = e.new_value; }); }); //]]> </script> <script id="base-helper-functions" type="text/javascript"> //<![CDATA[ // This code is pulled from lp.js that needs to be available on every // request. Pulling here to get it outside the scope of the YUI block. function setFocusByName(name) { // Focus the first element matching the given name which can be focused. var nodes = document.getElementsByName(name); var i, node; for (i = 0; i < nodes.length; i++) { node = nodes[i]; if (node.focus) { try { // Trying to focus a hidden element throws an error in IE8. if (node.offsetHeight !== 0) { node.focus(); } } catch (e) { LPJS.use('console', function(Y) { Y.log('In setFocusByName(<' + node.tagName + ' type=' + node.type + '>): ' + e); }); } break; } } } function selectWidget(widget_name, event) { if (event && (event.keyCode === 9 || event.keyCode === 13)) { // Avoid firing if user is tabbing through or simply pressing // enter to submit the form. return; } document.getElementById(widget_name).checked = true; } //]]> </script> <script type="text/javascript" id="available-official-tags-js">var available_official_tags = ["a11y", "appstream", "bionic", "bisect-done", "bitesize", "block-proposed", "block-proposed-focal", "block-proposed-jammy", "block-proposed-noble", "block-proposed-oracular", "cherry-pick", "community-security", "desktop-file", "dist-upgrade", "fixed-upstream", "focal", "ftbfs", "hw-specific", "jammy", "kernel-bug", "manpage", "metabug", "multiarch", "multigpu", "multimonitor", "needs-bisect", "needs-design", "needs-packaging", "needs-reassignment", "noble", "nvidia", "oracular", "package-conflict", "packaging", "patch", "patch-accepted-debian", "patch-accepted-upstream", "patch-forwarded-debian", "patch-forwarded-upstream", "patch-needswork", "patch-rejected", "patch-rejected-debian", "patch-rejected-upstream", "performing-bisect", "plucky", "qt4-removal", "regression-proposed", "regression-release", "regression-update", "string-fix", "suspend-resume", "systemd-boot", "testcase", "unmetdeps", "update-excuse", "upgrade-software-version", "verification-done-bionic", "verification-done-focal", "verification-done-jammy", "verification-done-noble", "verification-done-oracular", "verification-failed-bionic", "verification-failed-jammy", "verification-needed-bionic", "verification-needed-focal", "verification-needed-jammy", "verification-needed-noble", "verification-needed-oracular", "wayland"];</script> <script type="text/javascript"> LPJS.use('base', 'node', 'oop', 'event', 'lp.bugs.bugtask_index', 'lp.bugs.subscribers', 'lp.code.branchmergeproposal.diff', 'lp.app.comment', 'lp.services.messages.edit', function(Y) { Y.on('domready', function() { Y.lp.code.branchmergeproposal.diff.connect_diff_links(); Y.lp.bugs.bugtask_index.setup_bugtask_index(); Y.lp.bugs.bugtask_index.setup_bugtask_table(); LP.cache.comment_context = LP.cache.bug; var cl = new Y.lp.app.comment.CommentList(); cl.render(); var sl = new Y.lp.bugs.subscribers.createBugSubscribersLoader({ container_box: '#other-bug-subscribers', subscribers_details_view: '/+bug-portlet-subscribers-details', subscribe_someone_else_link: '.menu-link-addsubscriber' }, window); Y.lp.services.messages.edit.setup(); }); }); </script> <style type="text/css"> /* Align the 'add comment' link to the right of the comment box. */ #add-comment-form textarea { width: 100%; } #add-comment-form { max-width: 60em; padding-bottom: 4em; } #add-comment-form .actions {float: right;} .buglink-summary dd { font-size: 10px; } a#privacy-link:link:hover, a#privacy-link:visited:hover {text-decoration:none;} </style> <style type="text/css"> .yui3-overlay .value label { /* It normally makes sense for form labels to be bold, but since this form consists only of radio buttons, there's nothing but labels so we just get wall-to-wall bold. */ font-weight: normal !important; } </style> </head> <body id="document" itemscope="" itemtype="http://schema.org/WebPage" class="tab-bugs main_side public yui3-skin-sam"> <div class="yui-d0"> <div id="locationbar" class="login-logout"> <div id="logincontrol"><a href="https://bugs.launchpad.net/gvfs/+bug/1855318/+login">Log in / Register</a></div> </div><!--id="locationbar"--> <div id="watermark" class="watermark-apps-portlet"> <div> <a href="https://launchpad.net/gvfs"><img alt="" width="64" height="64" src="/@@/product-logo" /></a> </div> <div class="wide"> <h2 id="watermark-heading"><a href="https://launchpad.net/gvfs">gvfs</a></h2> </div> <!-- Application Menu --> <ul class="facetmenu"> <li class="overview"><a href="https://launchpad.net/gvfs">Overview</a></li> <li class="branches"><a href="https://code.launchpad.net/gvfs">Code</a></li> <li class="bugs active"><a href="https://bugs.launchpad.net/gvfs">Bugs</a></li> <li class="specifications"><a href="https://blueprints.launchpad.net/gvfs">Blueprints</a></li> <li class="translations"><a href="https://translations.launchpad.net/gvfs">Translations</a></li> <li class="answers"><a href="https://answers.launchpad.net/gvfs">Answers</a></li> </ul> </div> <div class="yui-t4"> <div id="maincontent" class="yui-main"> <div class="yui-b" dir="ltr"> <div class="context-publication"> <h1 id="edit-title"> <span class="yui3-editable_text-text ellipsis" style="max-width: 95%;"> autofs tries to find .xdg-volume-info and autorun.inf </span> </h1> <div id="registration" class="registering"> Bug #1855318 reported by <a href="https://launchpad.net/~tps" class="sprite person">Thomas Schweikle</a> <time title="2019-12-05 18:22:43 UTC" datetime="2019-12-05T18:22:43.615065+00:00">on 2019-12-05</time> </div> </div> <div id="request-notifications"> </div> <div> <div id="bug-is-duplicate"> </div> <div style="float: right;"> <span><a href="/+help-bugs/bug-heat.html" target="help" class="sprite flame">16</a></span> </div> <div class="actions"> <span id="affectsmetoo" style="display: inline">This bug affects 3 people</span> </div> <table id="affected-software" class="listing"> <thead> <tr> <th colspan="2">Affects</th> <th>Status</th> <th>Importance</th> <th>Assigned to</th> <th>Milestone</th> </tr> </thead> <tbody> <tr class="highlight" id="tasksummary2659416"> <td> </td> <td> <span id="bugtarget-picker-tasksummary2659416"> <span class="yui3-activator-data-box"> <a class="sprite product" href="https://bugs.launchpad.net/gvfs">gvfs</a> </span> <div class="yui3-activator-message-box yui3-activator-hidden"></div> </span> </td> <td style="width: 20%; vertical-align: middle"> <div class="status-content" style="width: 100%; float: left"> <span style="float: left" class="value statusNEW">New</span> </div> </td> <td style="width: 15em; vertical-align: middle"> <div class="importance-content" style="width: 100%; float: left"> <span style="float: left" class="value importanceUNKNOWN">Unknown</span> </div> </td> <td style="width:20%; margin: 0; padding: 0; vertical-align: middle; padding-left: 0.5em"> <div style="text-decoration: none; padding: 0.25em"> <span class="sprite bug-remote"></span> <a class="link-external" href="https://gitlab.gnome.org/GNOME/gvfs/-/issues/287">auto-gitlab.gnome.org-gnome-gvfs-- #287</a> </div> </td> <td style="width: 20%; vertical-align: middle"> </td> </tr> <tr id="tasksummary2555901"> <td> </td> <td> <span id="bugtarget-picker-tasksummary2555901"> <span class="yui3-activator-data-box"> <a class="sprite package-source" href="https://bugs.launchpad.net/ubuntu/+source/gvfs" title="Latest release: 1.56.1-1, uploaded to main on 2024-10-18 16:28:46.217401+00:00 by Debian GNOME Maintainers (pkg-gnome-maintainers), maintained by Debian GNOME Maintainers (pkg-gnome-maintainers)">gvfs (Ubuntu)</a> </span> <div class="yui3-activator-message-box yui3-activator-hidden"></div> </span> </td> <td style="width: 20%; vertical-align: middle"> <div class="status-content" style="width: 100%; float: left"> <span style="float: left" class="value statusTRIAGED">Triaged</span> </div> </td> <td style="width: 15em; vertical-align: middle"> <div class="importance-content" style="width: 100%; float: left"> <span style="float: left" class="value importanceLOW">Low</span> </div> </td> <td style="width:20%; margin: 0; padding: 0; vertical-align: middle; padding-left: 0.5em"> <span id="assignee-picker-tasksummary2555901"> <span class="yui3-activator-data-box"> Unassigned </span> <div class="yui3-activator-message-box yui3-activator-hidden"></div> </span> </td> <td style="width: 20%; vertical-align: middle"> <div class="milestone-content" style="width: 100%; float: left"> <a class="value" href=""></a> </div> </td> </tr> </tbody> </table> <div id="maincontentsub"> <div class="top-portlet"> <div itemprop="mainContentOfPage" class="report"> <div> <div class="lazr-multiline-edit" id="edit-description"> <div class="clearfix"> <h3>Bug Description</h3> </div> <div class="yui3-editable_text-text"><p># automount -f -v<br /> Starting automounter version 5.1.5, master map /etc/auto.master<br /> using kernel protocol version 5.05<br /> mounted indirect on /home/&lt;user&gt;/mnt with timeout 300, freq 75 seconds<br /> attempting to mount entry /home/&lt;<wbr />user&gt;/mnt/<wbr />.xdg-volume-<wbr />info<br /> key &quot;.xdg-volume-info&quot; not found in map source(s).<br /> failed to mount /home/&lt;<wbr />user&gt;/mnt/<wbr />.xdg-volume-<wbr />info<br /> attempting to mount entry /home/&lt;<wbr />user&gt;/mnt/<wbr />autorun.<wbr />inf<br /> key &quot;autorun.inf&quot; not found in map source(s).<br /> failed to mount /home/&lt;<wbr />user&gt;/mnt/<wbr />autorun.<wbr />inf</p> <p>/etc/auto.master:<br /> +dir:/etc/<wbr />auto.master.<wbr />d</p> <p>/etc/auto.master.d:<br /> -rw-r--r-- 1 root root 38 Dez 5 19:10 mnt.autofs</p> <p>/etc/auto.<wbr />master.<wbr />d/mnt.autofs:<br /> /home/&lt;user&gt;/mnt file:/etc/auto.mnt</p> <p>/etc/auto.mnt:<br /> G -fstype=<wbr />cifs,multiuser,<wbr />cruid=$<wbr />UID,sec=<wbr />krb5i ://&lt;serverA&gt;/sg<br /> L -fstype=<wbr />cifs,multiuser,<wbr />cruid=$<wbr />UID,sec=<wbr />krb5i ://&lt;serverB&gt;/apps<br /> M -fstype=<wbr />cifs,multiuser,<wbr />cruid=$<wbr />UID,sec=<wbr />krb5i ://&lt;serverC&gt;/gs<br /> O -fstype=<wbr />cifs,multiuser,<wbr />cruid=$<wbr />UID,sec=<wbr />krb5i ://&lt;serverF&gt;/media<br /> P -fstype=<wbr />cifs,multiuser,<wbr />cruid=$<wbr />UID,sec=<wbr />krb5i ://&lt;serverB&gt;/pb<br /> T -fstype=<wbr />cifs,multiuser,<wbr />cruid=$<wbr />UID,sec=<wbr />krb5i ://&lt;serverD&gt;/ALLG<br /> V -fstype=<wbr />cifs,multiuser,<wbr />cruid=$<wbr />UID,sec=<wbr />krb5i ://&lt;serverE&gt;/SW2<br /> W -fstype=<wbr />cifs,multiuser,<wbr />cruid=$<wbr />UID,sec=<wbr />krb5i ://&lt;serverD&gt;/sw<br /> X -fstype=<wbr />cifs,multiuser,<wbr />cruid=$<wbr />UID,sec=<wbr />krb5i ://&lt;serverB&gt;/depot<br /> Y -fstype=<wbr />cifs,multiuser,<wbr />cruid=$<wbr />UID,sec=<wbr />krb5i ://&lt;serverA&gt;<wbr />/sct-muc<br /> Z -fstype=<wbr />cifs,multiuser,<wbr />cruid=$<wbr />UID,sec=<wbr />krb5i ://&lt;serverB&gt;/z</p> <p>Could not find any file &quot;autorun.inf&quot; or &quot;.xdg-volume-info&quot; anywhere on my system. Where do these come from?</p> <p>ProblemType: Bug<br /> DistroRelease: Ubuntu 19.10<br /> Package: autofs 5.1.5-1ubuntu1<br /> ProcVersionSign<wbr />ature: Ubuntu 5.3.0-24.26-generic 5.3.10<br /> Uname: Linux 5.3.0-24-generic x86_64<br /> ApportVersion: 2.20.11-0ubuntu8.2<br /> Architecture: amd64<br /> Date: Thu Dec 5 19:12:38 2019<br /> InstallationDate: Installed on 2019-09-09 (87 days ago)<br /> InstallationMedia: Xubuntu 19.04 &quot;Disco Dingo&quot; - Release amd64 (20190416)<br /> ProcEnviron:<br /> &nbsp;LANGUAGE=de_DE<br /> &nbsp;TERM=screen<br /> &nbsp;PATH=(custom, no user)<br /> &nbsp;LANG=de_DE.UTF-8<br /> &nbsp;SHELL=/bin/bash<br /> SourcePackage: autofs<br /> UpgradeStatus: No upgrade log present (probably fresh install)</p></div> </div> </div> <div style="margin:-10px 0 20px 5px" class="clearfix"> </div> <div id="bug-tags"> <span id="tags-heading"> Tags: </span> <span id="tag-list"> <a class="unofficial-tag" href="/gvfs/+bugs?field.tag=amd64">amd64</a> <a class="unofficial-tag" href="/gvfs/+bugs?field.tag=apport-bug">apport-bug</a> <a class="unofficial-tag" href="/gvfs/+bugs?field.tag=eoan">eoan</a> </span> </div> <script type="text/javascript"> LPJS.use('event', 'node', 'lp.bugs.tags_entry', function(Y) { Y.on('domready', function(e) { Y.lp.bugs.tags_entry.setup_tag_entry( available_official_tags); }, window); }); </script> <div class="clearfix"></div> </div> <div id="branches-and-cves"> <div id="bug-branches-container" style="float: left"> </div><!-- bug-branch-container --> <div class="clearfix"></div> </div> <!-- branches and CVEs --> </div> <div> <div xmlns="http://www.w3.org/1999/xhtml" itemscope="" itemtype="http://schema.org/UserComments" class="boardComment editable-message " data-baseurl="/gvfs/+bug/1855318/comments/1" data-i-can-edit="False"> <div class="boardCommentDetails"> <div class="message-revision-container"> <div class="message-revision-container-header"> <span>Revision history for this message</span> <img src="/+icing/build/overlay/assets/skins/sam/images/close.gif" class="message-revision-close" /> </div> <script type="text/template"> <div class='message-revision-item'> <div class='message-revision-title'> <a class="sprite remove action-icon message-revision-del-btn"> Remove </a> <a class="js-action"> Revision #{revision}, created at {date_created_display} </a> </div> <div class='message-revision-body'>{content}</div> </div> </script> <div class="message-revision-list"></div> </div> <table> <tbody> <tr> <td> <a href="https://launchpad.net/~tps" class="sprite person">Thomas Schweikle (tps)</a> wrote <time itemprop="commentTime" datetime="2019-12-05T18:22:43.615065+00:00" title="2019-12-05 18:22:43 UTC">on 2019-12-05</time><span class="editable-message-last-edit-date">: </span> </td> <td> </td> <td> </td> <td class="bug-comment-index"> <a itemprop="url" href="/gvfs/+bug/1855318/comments/1"> #1</a> </td> </tr> </tbody> </table> </div> <div class="boardCommentBody"> <ul style="margin-bottom: 1em"> <li class="download-attachment"> <a href="https://bugs.launchpad.net/gvfs/+bug/1855318/+attachment/5310050/+files/Dependencies.txt" class="sprite download-icon">Dependencies.txt</a> <a class="sprite edit action-icon" href="/gvfs/+bug/1855318/+attachment/5310050">Edit</a> (3.1 KiB, text/plain; charset="utf-8") </li> <li class="download-attachment"> <a href="https://bugs.launchpad.net/gvfs/+bug/1855318/+attachment/5310051/+files/ProcCpuinfoMinimal.txt" class="sprite download-icon">ProcCpuinfoMinimal.txt</a> <a class="sprite edit action-icon" href="/gvfs/+bug/1855318/+attachment/5310051">Edit</a> (935 bytes, text/plain; charset="utf-8") </li> </ul> <div class="editable-message-body"> <div class="comment-text editable-message-text" itemprop="commentText"></div> </div> <div class="editable-message-form" style="display: none"> <textarea style="width: 100%" rows="10"></textarea> <input type="button" value="Update" class="editable-message-update-btn" /> <input type="button" value="Cancel" class="editable-message-cancel-btn" /> </div> </div> </div> <div xmlns="http://www.w3.org/1999/xhtml" itemscope="" itemtype="http://schema.org/UserComments" class="boardComment editable-message " data-baseurl="/gvfs/+bug/1855318/comments/2" data-i-can-edit="False"> <div class="boardCommentDetails"> <div class="message-revision-container"> <div class="message-revision-container-header"> <span>Revision history for this message</span> <img src="/+icing/build/overlay/assets/skins/sam/images/close.gif" class="message-revision-close" /> </div> <script type="text/template"> <div class='message-revision-item'> <div class='message-revision-title'> <a class="sprite remove action-icon message-revision-del-btn"> Remove </a> <a class="js-action"> Revision #{revision}, created at {date_created_display} </a> </div> <div class='message-revision-body'>{content}</div> </div> </script> <div class="message-revision-list"></div> </div> <table> <tbody> <tr> <td> <a href="https://launchpad.net/~paelzer" class="sprite person">Christian Ehrhardt  (paelzer)</a> wrote <time itemprop="commentTime" datetime="2019-12-06T12:02:42.322185+00:00" title="2019-12-06 12:02:42 UTC">on 2019-12-06</time><span class="editable-message-last-edit-date">: </span> </td> <td> </td> <td> </td> <td class="bug-comment-index"> <a itemprop="url" href="/gvfs/+bug/1855318/comments/2"> #2</a> </td> </tr> </tbody> </table> </div> <div class="boardCommentBody"> <div class="editable-message-body"> <div class="comment-text editable-message-text" itemprop="commentText"><p>Hi Thomas,<br /> that isn&#x27;t part of the autofs code or config.<br /> It is a general procedure mostly but not exclusively of the Desktop integration.</p> <p>You might remember that back in the days when you inserted a CD it got a Icon and potentially started some installer automatically.<br /> That is what those two files define - for example see [1]</p> <p>This thread [2] discusses how to disable that in gnome.</p> <p>I hope these hints help.<br /> IMHO that is not a bug in autofs, but if you really think it is please re-open and explain why you think it is.</p> <p>[1]: <a rel="nofollow" href="https://mail.gnome.org/archives/gvfs-list/2009-February/msg00024.html">https:/<wbr />/mail.gnome.<wbr />org/archives/<wbr />gvfs-list/<wbr />2009-February/<wbr />msg00024.<wbr />html</a><br /> [2]: <a rel="nofollow" href="https://askubuntu.com/questions/791076/disable-external-hard-disk-auto-open-autoplay-at-every-startup">https:/<wbr />/askubuntu.<wbr />com/questions/<wbr />791076/<wbr />disable-<wbr />external-<wbr />hard-disk-<wbr />auto-open-<wbr />autoplay-<wbr />at-every-<wbr />startup</a></p></div> </div> <div class="editable-message-form" style="display: none"> <textarea style="width: 100%" rows="10">Hi Thomas, that isn't part of the autofs code or config. It is a general procedure mostly but not exclusively of the Desktop integration. You might remember that back in the days when you inserted a CD it got a Icon and potentially started some installer automatically. That is what those two files define - for example see [1] This thread [2] discusses how to disable that in gnome. I hope these hints help. IMHO that is not a bug in autofs, but if you really think it is please re-open and explain why you think it is. [1]: https://mail.gnome.org/archives/gvfs-list/2009-February/msg00024.html [2]: https://askubuntu.com/questions/791076/disable-external-hard-disk-auto-open-autoplay-at-every-startup</textarea> <input type="button" value="Update" class="editable-message-update-btn" /> <input type="button" value="Cancel" class="editable-message-cancel-btn" /> </div> </div> <div class="boardCommentActivity"> <table class="bug-activity"> <tr> <td colspan="2">Changed in autofs (Ubuntu): </td> </tr> <tr> <td style="text-align: right;"> <b>status</b>: </td> <td> New &#8594; Incomplete </td> </tr> </table> </div> </div> <div xmlns="http://www.w3.org/1999/xhtml" itemscope="" itemtype="http://schema.org/UserComments" class="boardComment editable-message " data-baseurl="/gvfs/+bug/1855318/comments/3" data-i-can-edit="False"> <div class="boardCommentDetails"> <div class="message-revision-container"> <div class="message-revision-container-header"> <span>Revision history for this message</span> <img src="/+icing/build/overlay/assets/skins/sam/images/close.gif" class="message-revision-close" /> </div> <script type="text/template"> <div class='message-revision-item'> <div class='message-revision-title'> <a class="sprite remove action-icon message-revision-del-btn"> Remove </a> <a class="js-action"> Revision #{revision}, created at {date_created_display} </a> </div> <div class='message-revision-body'>{content}</div> </div> </script> <div class="message-revision-list"></div> </div> <table> <tbody> <tr> <td> <a href="https://launchpad.net/~janitor" class="sprite person-inactive">Launchpad Janitor (janitor)</a> wrote <time itemprop="commentTime" datetime="2020-02-05T04:17:33.532352+00:00" title="2020-02-05 04:17:33 UTC">on 2020-02-05</time><span class="editable-message-last-edit-date">: </span> </td> <td> </td> <td> </td> <td class="bug-comment-index"> <a itemprop="url" href="/gvfs/+bug/1855318/comments/3"> #3</a> </td> </tr> </tbody> </table> </div> <div class="boardCommentBody"> <div class="editable-message-body"> <div class="comment-text editable-message-text" itemprop="commentText"><p>[Expired for autofs (Ubuntu) because there has been no activity for 60 days.]</p></div> </div> <div class="editable-message-form" style="display: none"> <textarea style="width: 100%" rows="10">[Expired for autofs (Ubuntu) because there has been no activity for 60 days.]</textarea> <input type="button" value="Update" class="editable-message-update-btn" /> <input type="button" value="Cancel" class="editable-message-cancel-btn" /> </div> </div> <div class="boardCommentActivity"> <table class="bug-activity"> <tr> <td colspan="2">Changed in autofs (Ubuntu): </td> </tr> <tr> <td style="text-align: right;"> <b>status</b>: </td> <td> Incomplete &#8594; Expired </td> </tr> </table> </div> </div> <div xmlns="http://www.w3.org/1999/xhtml" itemscope="" itemtype="http://schema.org/UserComments" class="boardComment editable-message " data-baseurl="/gvfs/+bug/1855318/comments/4" data-i-can-edit="False"> <div class="boardCommentDetails"> <div class="message-revision-container"> <div class="message-revision-container-header"> <span>Revision history for this message</span> <img src="/+icing/build/overlay/assets/skins/sam/images/close.gif" class="message-revision-close" /> </div> <script type="text/template"> <div class='message-revision-item'> <div class='message-revision-title'> <a class="sprite remove action-icon message-revision-del-btn"> Remove </a> <a class="js-action"> Revision #{revision}, created at {date_created_display} </a> </div> <div class='message-revision-body'>{content}</div> </div> </script> <div class="message-revision-list"></div> </div> <table> <tbody> <tr> <td> <a href="https://launchpad.net/~brownboyjohn" class="sprite person">John W. Brown, Jr. (brownboyjohn)</a> wrote <time itemprop="commentTime" datetime="2020-05-13T02:52:27.749679+00:00" title="2020-05-13 02:52:27 UTC">on 2020-05-13</time><span class="editable-message-last-edit-date">: </span> </td> <td> </td> <td> </td> <td class="bug-comment-index"> <a itemprop="url" href="/gvfs/+bug/1855318/comments/4"> #4</a> </td> </tr> </tbody> </table> </div> <div class="boardCommentBody"> <div class="editable-message-body"> <div class="comment-text editable-message-text" itemprop="commentText"><p>No, this is a real thing. The issue is valid. The explanation does not dismiss it. Even if the assumption that the desktop is somehow looking for these files for autorun functionality, how does that equate into an entire mount point being generated.</p> <p>Is this fallback behavior of some kind?</p> <p>Just as the original example illustrated, the automount daemon completely ignores the map file and attempts to mount these 2 mount points instead. It didn&#x27;t do that before.</p></div> </div> <div class="editable-message-form" style="display: none"> <textarea style="width: 100%" rows="10">No, this is a real thing. The issue is valid. The explanation does not dismiss it. Even if the assumption that the desktop is somehow looking for these files for autorun functionality, how does that equate into an entire mount point being generated. Is this fallback behavior of some kind? Just as the original example illustrated, the automount daemon completely ignores the map file and attempts to mount these 2 mount points instead. It didn't do that before.</textarea> <input type="button" value="Update" class="editable-message-update-btn" /> <input type="button" value="Cancel" class="editable-message-cancel-btn" /> </div> </div> <div class="boardCommentActivity"> <table class="bug-activity"> <tr> <td colspan="2">Changed in autofs (Ubuntu): </td> </tr> <tr> <td style="text-align: right;"> <b>status</b>: </td> <td> Expired &#8594; New </td> </tr> </table> </div> </div> <div xmlns="http://www.w3.org/1999/xhtml" itemscope="" itemtype="http://schema.org/UserComments" class="boardComment editable-message " data-baseurl="/gvfs/+bug/1855318/comments/5" data-i-can-edit="False"> <div class="boardCommentDetails"> <div class="message-revision-container"> <div class="message-revision-container-header"> <span>Revision history for this message</span> <img src="/+icing/build/overlay/assets/skins/sam/images/close.gif" class="message-revision-close" /> </div> <script type="text/template"> <div class='message-revision-item'> <div class='message-revision-title'> <a class="sprite remove action-icon message-revision-del-btn"> Remove </a> <a class="js-action"> Revision #{revision}, created at {date_created_display} </a> </div> <div class='message-revision-body'>{content}</div> </div> </script> <div class="message-revision-list"></div> </div> <table> <tbody> <tr> <td> <a href="https://launchpad.net/~janitor" class="sprite person-inactive">Launchpad Janitor (janitor)</a> wrote <time itemprop="commentTime" datetime="2020-05-13T02:54:01.271497+00:00" title="2020-05-13 02:54:01 UTC">on 2020-05-13</time><span class="editable-message-last-edit-date">: </span> </td> <td> </td> <td> </td> <td class="bug-comment-index"> <a itemprop="url" href="/gvfs/+bug/1855318/comments/5"> #5</a> </td> </tr> </tbody> </table> </div> <div class="boardCommentBody"> <div class="editable-message-body"> <div class="comment-text editable-message-text" itemprop="commentText"><p>Status changed to &#x27;Confirmed&#x27; because the bug affects multiple users.</p></div> </div> <div class="editable-message-form" style="display: none"> <textarea style="width: 100%" rows="10">Status changed to 'Confirmed' because the bug affects multiple users.</textarea> <input type="button" value="Update" class="editable-message-update-btn" /> <input type="button" value="Cancel" class="editable-message-cancel-btn" /> </div> </div> <div class="boardCommentActivity"> <table class="bug-activity"> <tr> <td colspan="2">Changed in autofs (Ubuntu): </td> </tr> <tr> <td style="text-align: right;"> <b>status</b>: </td> <td> New &#8594; Confirmed </td> </tr> </table> </div> </div> <div xmlns="http://www.w3.org/1999/xhtml" itemscope="" itemtype="http://schema.org/UserComments" class="boardComment editable-message " data-baseurl="/gvfs/+bug/1855318/comments/6" data-i-can-edit="False"> <div class="boardCommentDetails"> <div class="message-revision-container"> <div class="message-revision-container-header"> <span>Revision history for this message</span> <img src="/+icing/build/overlay/assets/skins/sam/images/close.gif" class="message-revision-close" /> </div> <script type="text/template"> <div class='message-revision-item'> <div class='message-revision-title'> <a class="sprite remove action-icon message-revision-del-btn"> Remove </a> <a class="js-action"> Revision #{revision}, created at {date_created_display} </a> </div> <div class='message-revision-body'>{content}</div> </div> </script> <div class="message-revision-list"></div> </div> <table> <tbody> <tr> <td> <a href="https://launchpad.net/~brownboyjohn" class="sprite person">John W. Brown, Jr. (brownboyjohn)</a> wrote <time itemprop="commentTime" datetime="2020-05-13T03:20:29.554773+00:00" title="2020-05-13 03:20:29 UTC">on 2020-05-13</time><span class="editable-message-last-edit-date">: </span> </td> <td> </td> <td> </td> <td class="bug-comment-index"> <a itemprop="url" href="/gvfs/+bug/1855318/comments/6"> #6</a> </td> </tr> </tbody> </table> </div> <div class="boardCommentBody"> <div class="editable-message-body"> <div class="comment-text editable-message-text" itemprop="commentText"><p>I have been trying to recreate in different permutations and I have come to the conclusion that the 2 weird mounts aren&#x27;t the primary issue. Those are strange, but it appears to break when the autofs is started and stopped multiple times as it would be if someone were trying to troubleshoot there configuration.</p> <p>It appears that the daemon does not clean up when it closes and can sometimes leave open mounts That should be closed. I found that if I stopped the daemon and restart, my configured mounts were not being mounted automatically.</p> <p>When this happens, the happy path only returns when I close the deamon and manually release any held mounts.</p> <p>To recreate the error:<br /> 1. I ran the daemon in debug mode in the foreground<br /> 2. navigated to OR did an &quot;ls&quot; on an automounted mount to verify that it was mounted<br /> 2.1 close any open file explorer windows<br /> 2.2 cd out of any mounted directories on the command line<br /> 3. After confirming the mount, I then manually close the running automount daemon<br /> 4. If I restart the automount daemon at this point, it does not consistently re-mount my configured mounts</p> <p>This is where it is easy to assume that the 2 unconfigured mounts initially reported are the symptoms of the failure. It appears that automount does not cleanly close out in such a way that it can be restarted without manual intervention. This may be known/inherited bugginess of automount, and if so, maybe not a severe issue is being reported here.</p> <p>Still no explanation for the 2 unconfigured mounts though. That is still valid unexpected behavior, whether the OS has autorun support or now.</p></div> </div> <div class="editable-message-form" style="display: none"> <textarea style="width: 100%" rows="10">I have been trying to recreate in different permutations and I have come to the conclusion that the 2 weird mounts aren't the primary issue. Those are strange, but it appears to break when the autofs is started and stopped multiple times as it would be if someone were trying to troubleshoot there configuration. It appears that the daemon does not clean up when it closes and can sometimes leave open mounts That should be closed. I found that if I stopped the daemon and restart, my configured mounts were not being mounted automatically. When this happens, the happy path only returns when I close the deamon and manually release any held mounts. To recreate the error: 1. I ran the daemon in debug mode in the foreground 2. navigated to OR did an "ls" on an automounted mount to verify that it was mounted 2.1 close any open file explorer windows 2.2 cd out of any mounted directories on the command line 3. After confirming the mount, I then manually close the running automount daemon 4. If I restart the automount daemon at this point, it does not consistently re-mount my configured mounts This is where it is easy to assume that the 2 unconfigured mounts initially reported are the symptoms of the failure. It appears that automount does not cleanly close out in such a way that it can be restarted without manual intervention. This may be known/inherited bugginess of automount, and if so, maybe not a severe issue is being reported here. Still no explanation for the 2 unconfigured mounts though. That is still valid unexpected behavior, whether the OS has autorun support or now.</textarea> <input type="button" value="Update" class="editable-message-update-btn" /> <input type="button" value="Cancel" class="editable-message-cancel-btn" /> </div> </div> </div> <div xmlns="http://www.w3.org/1999/xhtml" itemscope="" itemtype="http://schema.org/UserComments" class="boardComment editable-message " data-baseurl="/gvfs/+bug/1855318/comments/7" data-i-can-edit="False"> <div class="boardCommentDetails"> <div class="message-revision-container"> <div class="message-revision-container-header"> <span>Revision history for this message</span> <img src="/+icing/build/overlay/assets/skins/sam/images/close.gif" class="message-revision-close" /> </div> <script type="text/template"> <div class='message-revision-item'> <div class='message-revision-title'> <a class="sprite remove action-icon message-revision-del-btn"> Remove </a> <a class="js-action"> Revision #{revision}, created at {date_created_display} </a> </div> <div class='message-revision-body'>{content}</div> </div> </script> <div class="message-revision-list"></div> </div> <table> <tbody> <tr> <td> <a href="https://launchpad.net/~paride" class="sprite person">Paride Legovini (paride)</a> wrote <time itemprop="commentTime" datetime="2020-05-14T15:07:13.752099+00:00" title="2020-05-14 15:07:13 UTC">on 2020-05-14</time><span class="editable-message-last-edit-date">: </span> </td> <td> </td> <td> </td> <td class="bug-comment-index"> <a itemprop="url" href="/gvfs/+bug/1855318/comments/7"> #7</a> </td> </tr> </tbody> </table> </div> <div class="boardCommentBody"> <div class="editable-message-body"> <div class="comment-text editable-message-text" itemprop="commentText"><p>Hi, I have the impression we are speaking of different issues here. If we&#x27;re dealing with more than one bug I think we need to file separate bug reports. I&#x27;ll try to recap:</p> <p>1. This bug was originally opened as Thomas Schweikle was surprised by the fact that autofs tries to find .xdg-volume-info and autorun.inf. Christian explained that this is likely done on purpose. Thomas didn&#x27;t complain about autofs ignoring the map file.</p> <p>2. brownboyjohn says that the issue is valid and that autofs ignores the map file, and that this didn&#x27;t happen before. To me it looks like &quot;autofs ignores the map file&quot; is a different issue. If this it the case, it deserves its own bug report, explaining when it did stop working, as far as it is possible to tell.</p> <p>3. brownboyjohn also notes that the automount daemon leaves stale mounts when stopped. This is yet another issue I think, but before calling it a bug we need to make sure that the mountpoints were not busy when the automount service got stopped. There is no way it can unmount busy mounts I&#x27;d say, but I&#x27;m not familiar with the package.</p> <p>Waiting for more information I&#x27;m setting this report to Incomplete.</p></div> </div> <div class="editable-message-form" style="display: none"> <textarea style="width: 100%" rows="10">Hi, I have the impression we are speaking of different issues here. If we're dealing with more than one bug I think we need to file separate bug reports. I'll try to recap: 1. This bug was originally opened as Thomas Schweikle was surprised by the fact that autofs tries to find .xdg-volume-info and autorun.inf. Christian explained that this is likely done on purpose. Thomas didn't complain about autofs ignoring the map file. 2. brownboyjohn says that the issue is valid and that autofs ignores the map file, and that this didn't happen before. To me it looks like "autofs ignores the map file" is a different issue. If this it the case, it deserves its own bug report, explaining when it did stop working, as far as it is possible to tell. 3. brownboyjohn also notes that the automount daemon leaves stale mounts when stopped. This is yet another issue I think, but before calling it a bug we need to make sure that the mountpoints were not busy when the automount service got stopped. There is no way it can unmount busy mounts I'd say, but I'm not familiar with the package. Waiting for more information I'm setting this report to Incomplete.</textarea> <input type="button" value="Update" class="editable-message-update-btn" /> <input type="button" value="Cancel" class="editable-message-cancel-btn" /> </div> </div> <div class="boardCommentActivity"> <table class="bug-activity"> <tr> <td colspan="2">Changed in autofs (Ubuntu): </td> </tr> <tr> <td style="text-align: right;"> <b>status</b>: </td> <td> Confirmed &#8594; Incomplete </td> </tr> </table> </div> </div> <div xmlns="http://www.w3.org/1999/xhtml" itemscope="" itemtype="http://schema.org/UserComments" class="boardComment editable-message " data-baseurl="/gvfs/+bug/1855318/comments/8" data-i-can-edit="False"> <div class="boardCommentDetails"> <div class="message-revision-container"> <div class="message-revision-container-header"> <span>Revision history for this message</span> <img src="/+icing/build/overlay/assets/skins/sam/images/close.gif" class="message-revision-close" /> </div> <script type="text/template"> <div class='message-revision-item'> <div class='message-revision-title'> <a class="sprite remove action-icon message-revision-del-btn"> Remove </a> <a class="js-action"> Revision #{revision}, created at {date_created_display} </a> </div> <div class='message-revision-body'>{content}</div> </div> </script> <div class="message-revision-list"></div> </div> <table> <tbody> <tr> <td> <a href="https://launchpad.net/~janitor" class="sprite person-inactive">Launchpad Janitor (janitor)</a> wrote <time itemprop="commentTime" datetime="2020-07-14T04:17:23.741160+00:00" title="2020-07-14 04:17:23 UTC">on 2020-07-14</time><span class="editable-message-last-edit-date">: </span> </td> <td> </td> <td> </td> <td class="bug-comment-index"> <a itemprop="url" href="/gvfs/+bug/1855318/comments/8"> #8</a> </td> </tr> </tbody> </table> </div> <div class="boardCommentBody"> <div class="editable-message-body"> <div class="comment-text editable-message-text" itemprop="commentText"><p>[Expired for autofs (Ubuntu) because there has been no activity for 60 days.]</p></div> </div> <div class="editable-message-form" style="display: none"> <textarea style="width: 100%" rows="10">[Expired for autofs (Ubuntu) because there has been no activity for 60 days.]</textarea> <input type="button" value="Update" class="editable-message-update-btn" /> <input type="button" value="Cancel" class="editable-message-cancel-btn" /> </div> </div> <div class="boardCommentActivity"> <table class="bug-activity"> <tr> <td colspan="2">Changed in autofs (Ubuntu): </td> </tr> <tr> <td style="text-align: right;"> <b>status</b>: </td> <td> Incomplete &#8594; Expired </td> </tr> </table> </div> </div> <div xmlns="http://www.w3.org/1999/xhtml" itemscope="" itemtype="http://schema.org/UserComments" class="boardComment editable-message " data-baseurl="/gvfs/+bug/1855318/comments/10" data-i-can-edit="False"> <div class="boardCommentDetails"> <div class="message-revision-container"> <div class="message-revision-container-header"> <span>Revision history for this message</span> <img src="/+icing/build/overlay/assets/skins/sam/images/close.gif" class="message-revision-close" /> </div> <script type="text/template"> <div class='message-revision-item'> <div class='message-revision-title'> <a class="sprite remove action-icon message-revision-del-btn"> Remove </a> <a class="js-action"> Revision #{revision}, created at {date_created_display} </a> </div> <div class='message-revision-body'>{content}</div> </div> </script> <div class="message-revision-list"></div> </div> <table> <tbody> <tr> <td> <a href="https://launchpad.net/~hvinke" class="sprite person">Han Vinke (hvinke)</a> wrote <time itemprop="commentTime" datetime="2020-11-13T22:30:18.745868+00:00" title="2020-11-13 22:30:18 UTC">on 2020-11-13</time><span class="editable-message-last-edit-date">: </span> </td> <td> </td> <td> </td> <td class="bug-comment-index"> <a itemprop="url" href="/gvfs/+bug/1855318/comments/10"> #10</a> </td> </tr> </tbody> </table> </div> <div class="boardCommentBody"> <div class="editable-message-body"> <div class="comment-text editable-message-text" itemprop="commentText"><p>I made a file auto.extra with:</p> <p>.hidden /.<br /> NAS -fstype=<wbr />nfs,vers=<wbr />4,rw,soft,<wbr />rsize=8192,<wbr />wsize=8192 &lt;my server&gt;:/Download</p> <p>This way autofs is first loading a directory .hidden which is empty, which is on purpose.</p> <p>Now the errors disappear from autofs. I think this is a simple but fine solution.<br /> In Thunar the folder .hidden is only visible when the option ¨show hidden files¨ is selected.</p> <p>See also <a rel="nofollow" href="https://bugzilla.redhat.com/show_bug.cgi?id=1437754">https:/<wbr />/bugzilla.<wbr />redhat.<wbr />com/show_<wbr />bug.cgi?<wbr />id=1437754</a> for more info over the bug.</p></div> </div> <div class="editable-message-form" style="display: none"> <textarea style="width: 100%" rows="10">I made a file auto.extra with: .hidden /. NAS -fstype=nfs,vers=4,rw,soft,rsize=8192,wsize=8192 &lt;my server&gt;:/Download This way autofs is first loading a directory .hidden which is empty, which is on purpose. Now the errors disappear from autofs. I think this is a simple but fine solution. In Thunar the folder .hidden is only visible when the option ¨show hidden files¨ is selected. See also https://bugzilla.redhat.com/show_bug.cgi?id=1437754 for more info over the bug. </textarea> <input type="button" value="Update" class="editable-message-update-btn" /> <input type="button" value="Cancel" class="editable-message-cancel-btn" /> </div> </div> </div> <div xmlns="http://www.w3.org/1999/xhtml" itemscope="" itemtype="http://schema.org/UserComments" class="boardComment editable-message " data-baseurl="/gvfs/+bug/1855318/comments/11" data-i-can-edit="False"> <div class="boardCommentDetails"> <div class="message-revision-container"> <div class="message-revision-container-header"> <span>Revision history for this message</span> <img src="/+icing/build/overlay/assets/skins/sam/images/close.gif" class="message-revision-close" /> </div> <script type="text/template"> <div class='message-revision-item'> <div class='message-revision-title'> <a class="sprite remove action-icon message-revision-del-btn"> Remove </a> <a class="js-action"> Revision #{revision}, created at {date_created_display} </a> </div> <div class='message-revision-body'>{content}</div> </div> </script> <div class="message-revision-list"></div> </div> <table> <tbody> <tr> <td> <a href="https://launchpad.net/~bryce" class="sprite person">Bryce Harrington (bryce)</a> wrote <time itemprop="commentTime" datetime="2020-11-17T23:44:05.361708+00:00" title="2020-11-17 23:44:05 UTC">on 2020-11-17</time><span class="editable-message-last-edit-date">: </span> </td> <td> </td> <td> </td> <td class="bug-comment-index"> <a itemprop="url" href="/gvfs/+bug/1855318/comments/11"> #11</a> </td> </tr> </tbody> </table> </div> <div class="boardCommentBody"> <div class="editable-message-body"> <div class="comment-text editable-message-text" itemprop="commentText"><p>Han, thanks for the workaround suggestion. I&#x27;m not certain if that resolves the original issue, and as Paride mentioned there seem to be several separate issues identified by commenters so far. But I&#x27;ll reopen the bug for further investigation. Meanwhile, I would suggest raising these issues upstream, as it sounds like (esp. from the redhat bug report) the issues are general and not just specific to Ubuntu.</p></div> </div> <div class="editable-message-form" style="display: none"> <textarea style="width: 100%" rows="10">Han, thanks for the workaround suggestion. I'm not certain if that resolves the original issue, and as Paride mentioned there seem to be several separate issues identified by commenters so far. But I'll reopen the bug for further investigation. Meanwhile, I would suggest raising these issues upstream, as it sounds like (esp. from the redhat bug report) the issues are general and not just specific to Ubuntu.</textarea> <input type="button" value="Update" class="editable-message-update-btn" /> <input type="button" value="Cancel" class="editable-message-cancel-btn" /> </div> </div> <div class="boardCommentActivity"> <table class="bug-activity"> <tr> <td colspan="2">Changed in autofs (Ubuntu): </td> </tr> <tr> <td style="text-align: right;"> <b>status</b>: </td> <td> Expired &#8594; New </td> </tr> </table> </div> </div> <div xmlns="http://www.w3.org/1999/xhtml" itemscope="" itemtype="http://schema.org/UserComments" class="boardComment editable-message " data-baseurl="/gvfs/+bug/1855318/comments/12" data-i-can-edit="False"> <div class="boardCommentDetails"> <div class="message-revision-container"> <div class="message-revision-container-header"> <span>Revision history for this message</span> <img src="/+icing/build/overlay/assets/skins/sam/images/close.gif" class="message-revision-close" /> </div> <script type="text/template"> <div class='message-revision-item'> <div class='message-revision-title'> <a class="sprite remove action-icon message-revision-del-btn"> Remove </a> <a class="js-action"> Revision #{revision}, created at {date_created_display} </a> </div> <div class='message-revision-body'>{content}</div> </div> </script> <div class="message-revision-list"></div> </div> <table> <tbody> <tr> <td> <a href="https://launchpad.net/~hvinke" class="sprite person">Han Vinke (hvinke)</a> wrote <time itemprop="commentTime" datetime="2020-11-21T15:34:59.412817+00:00" title="2020-11-21 15:34:59 UTC">on 2020-11-21</time><span class="editable-message-last-edit-date">: </span> </td> <td> </td> <td> </td> <td class="bug-comment-index"> <a itemprop="url" href="/gvfs/+bug/1855318/comments/12"> #12</a> </td> </tr> </tbody> </table> </div> <div class="boardCommentBody"> <div class="editable-message-body"> <div class="comment-text editable-message-text" itemprop="commentText"><p>Hi, the problem seems to come from gvfs-udisks2-<wbr />volume-<wbr />monitor. See upstream: <a rel="nofollow" href="https://gitlab.gnome.org/GNOME/gvfs/-/issues/287">https:/<wbr />/gitlab.<wbr />gnome.org/<wbr />GNOME/gvfs/<wbr />-/issues/<wbr />287</a></p> <p>There the problem is clearly stated :</p> <p>....¨The difference with autofs in comparison with ordinary mounts is that the mount always exists (you can see it in &quot;/etc/mtab&quot;), but do not have to be really mounted. However, gvfs-udisks2-<wbr />volume-<wbr />monitor thinks that it is really mounted if the mount exists...<br /> Consequently, the following code is called which looks for some files on that mounts (e.g. autorun.inf, .xdg-volume-info), which causes the unwanted automounts for autofs.¨</p> <p>But no solution for autofs momentarily, the patch proposed caused other issues.</p></div> </div> <div class="editable-message-form" style="display: none"> <textarea style="width: 100%" rows="10">Hi, the problem seems to come from gvfs-udisks2-volume-monitor. See upstream: https://gitlab.gnome.org/GNOME/gvfs/-/issues/287 There the problem is clearly stated : ....¨The difference with autofs in comparison with ordinary mounts is that the mount always exists (you can see it in "/etc/mtab"), but do not have to be really mounted. However, gvfs-udisks2-volume-monitor thinks that it is really mounted if the mount exists... Consequently, the following code is called which looks for some files on that mounts (e.g. autorun.inf, .xdg-volume-info), which causes the unwanted automounts for autofs.¨ But no solution for autofs momentarily, the patch proposed caused other issues. </textarea> <input type="button" value="Update" class="editable-message-update-btn" /> <input type="button" value="Cancel" class="editable-message-cancel-btn" /> </div> </div> </div> <div xmlns="http://www.w3.org/1999/xhtml" itemscope="" itemtype="http://schema.org/UserComments" class="boardComment editable-message " data-baseurl="/gvfs/+bug/1855318/comments/13" data-i-can-edit="False"> <div class="boardCommentDetails"> <div class="message-revision-container"> <div class="message-revision-container-header"> <span>Revision history for this message</span> <img src="/+icing/build/overlay/assets/skins/sam/images/close.gif" class="message-revision-close" /> </div> <script type="text/template"> <div class='message-revision-item'> <div class='message-revision-title'> <a class="sprite remove action-icon message-revision-del-btn"> Remove </a> <a class="js-action"> Revision #{revision}, created at {date_created_display} </a> </div> <div class='message-revision-body'>{content}</div> </div> </script> <div class="message-revision-list"></div> </div> <table> <tbody> <tr> <td> <a href="https://launchpad.net/~janitor" class="sprite person-inactive">Launchpad Janitor (janitor)</a> wrote <time itemprop="commentTime" datetime="2020-11-21T20:47:07.079941+00:00" title="2020-11-21 20:47:07 UTC">on 2020-11-21</time><span class="editable-message-last-edit-date">: </span> </td> <td> </td> <td> </td> <td class="bug-comment-index"> <a itemprop="url" href="/gvfs/+bug/1855318/comments/13"> #13</a> </td> </tr> </tbody> </table> </div> <div class="boardCommentBody"> <div class="editable-message-body"> <div class="comment-text editable-message-text" itemprop="commentText"><p>Status changed to &#x27;Confirmed&#x27; because the bug affects multiple users.</p></div> </div> <div class="editable-message-form" style="display: none"> <textarea style="width: 100%" rows="10">Status changed to 'Confirmed' because the bug affects multiple users.</textarea> <input type="button" value="Update" class="editable-message-update-btn" /> <input type="button" value="Cancel" class="editable-message-cancel-btn" /> </div> </div> <div class="boardCommentActivity"> <table class="bug-activity"> <tr> <td colspan="2">Changed in autofs (Ubuntu): </td> </tr> <tr> <td style="text-align: right;"> <b>status</b>: </td> <td> New &#8594; Confirmed </td> </tr> </table> </div> </div> <div xmlns="http://www.w3.org/1999/xhtml" itemscope="" itemtype="http://schema.org/UserComments" class="boardComment editable-message " data-baseurl="/gvfs/+bug/1855318/comments/14" data-i-can-edit="False"> <div class="boardCommentDetails"> <div class="message-revision-container"> <div class="message-revision-container-header"> <span>Revision history for this message</span> <img src="/+icing/build/overlay/assets/skins/sam/images/close.gif" class="message-revision-close" /> </div> <script type="text/template"> <div class='message-revision-item'> <div class='message-revision-title'> <a class="sprite remove action-icon message-revision-del-btn"> Remove </a> <a class="js-action"> Revision #{revision}, created at {date_created_display} </a> </div> <div class='message-revision-body'>{content}</div> </div> </script> <div class="message-revision-list"></div> </div> <table> <tbody> <tr> <td> <a href="https://launchpad.net/~hvinke" class="sprite person">Han Vinke (hvinke)</a> wrote <time itemprop="commentTime" datetime="2020-11-21T21:04:12.494355+00:00" title="2020-11-21 21:04:12 UTC">on 2020-11-21</time><span class="editable-message-last-edit-date">: </span> </td> <td> </td> <td> </td> <td class="bug-comment-index"> <a itemprop="url" href="/gvfs/+bug/1855318/comments/14"> #14</a> </td> </tr> </tbody> </table> </div> <div class="boardCommentBody"> <div class="editable-message-body"> <div class="comment-text editable-message-text" itemprop="commentText"><p>Btw, I do not have an issue with that the automount daemon completely ignores the map file.<br /> In the file &quot;auto.extra&quot; I can also put a line with .xdg-volume-info /-<br /> Then the systemd daemon is only mentioning: xubuntu automount[]: the key &quot;autorun.inf&quot; not found in map source(s).</p></div> </div> <div class="editable-message-form" style="display: none"> <textarea style="width: 100%" rows="10">Btw, I do not have an issue with that the automount daemon completely ignores the map file. In the file "auto.extra" I can also put a line with .xdg-volume-info /- Then the systemd daemon is only mentioning: xubuntu automount[]: the key "autorun.inf" not found in map source(s).</textarea> <input type="button" value="Update" class="editable-message-update-btn" /> <input type="button" value="Cancel" class="editable-message-cancel-btn" /> </div> </div> </div> <div xmlns="http://www.w3.org/1999/xhtml" itemscope="" itemtype="http://schema.org/UserComments" class="boardComment editable-message " data-baseurl="/gvfs/+bug/1855318/comments/15" data-i-can-edit="False"> <div class="boardCommentDetails"> <div class="message-revision-container"> <div class="message-revision-container-header"> <span>Revision history for this message</span> <img src="/+icing/build/overlay/assets/skins/sam/images/close.gif" class="message-revision-close" /> </div> <script type="text/template"> <div class='message-revision-item'> <div class='message-revision-title'> <a class="sprite remove action-icon message-revision-del-btn"> Remove </a> <a class="js-action"> Revision #{revision}, created at {date_created_display} </a> </div> <div class='message-revision-body'>{content}</div> </div> </script> <div class="message-revision-list"></div> </div> <table> <tbody> <tr> <td> <a href="https://launchpad.net/~bryce" class="sprite person">Bryce Harrington (bryce)</a> wrote <time itemprop="commentTime" datetime="2020-11-24T18:28:52.701511+00:00" title="2020-11-24 18:28:52 UTC">on 2020-11-24</time><span class="editable-message-last-edit-date">: </span> </td> <td> </td> <td> </td> <td class="bug-comment-index"> <a itemprop="url" href="/gvfs/+bug/1855318/comments/15"> #15</a> </td> </tr> </tbody> </table> </div> <div class="boardCommentBody"> <div class="editable-message-body"> <div class="comment-text editable-message-text" itemprop="commentText"><p>Thanks Han, that makes sense that the issue is actually in the volume monitor&#x27;s (lack of) handling for autofs&#x27; transitory nature. I&#x27;ll reassign to that package for further investigation.</p></div> </div> <div class="editable-message-form" style="display: none"> <textarea style="width: 100%" rows="10">Thanks Han, that makes sense that the issue is actually in the volume monitor's (lack of) handling for autofs' transitory nature. I'll reassign to that package for further investigation.</textarea> <input type="button" value="Update" class="editable-message-update-btn" /> <input type="button" value="Cancel" class="editable-message-cancel-btn" /> </div> </div> <div class="boardCommentActivity"> <table class="bug-activity"> <tr> <td style="text-align: right;"> <b>affects</b>: </td> <td> autofs (Ubuntu) &#8594; gvfs (Ubuntu) </td> </tr> </table> </div> </div> <div class="boardComment"> <div class="boardCommentDetails"> <a href="https://launchpad.net/~seb128" class="sprite person">Sebastien Bacher (seb128)</a> <time title="2020-11-25 08:50:16 UTC" datetime="2020-11-25T08:50:16.771496+00:00">on 2020-11-25</time> </div> <div class="boardCommentActivity"> <table class="bug-activity"> <tr> <td colspan="2">Changed in gvfs (Ubuntu): </td> </tr> <tr> <td style="text-align: right;"> <b>status</b>: </td> <td> Confirmed &#8594; Triaged </td> </tr> <tr> <td style="text-align: right;"> <b>importance</b>: </td> <td> Undecided &#8594; Low </td> </tr> </table> </div> </div> <div class="boardComment"> <div class="boardCommentDetails"> <a href="https://launchpad.net/~bug-watch-updater" class="sprite person-inactive">Bug Watch Updater (bug-watch-updater)</a> <time title="2022-05-20 16:05:53 UTC" datetime="2022-05-20T16:05:53.913801+00:00">on 2022-05-20</time> </div> <div class="boardCommentActivity"> <table class="bug-activity"> <tr> <td colspan="2">Changed in gvfs: </td> </tr> <tr> <td style="text-align: right;"> <b>status</b>: </td> <td> Unknown &#8594; New </td> </tr> </table> </div> </div> <div style="float: right;"> <a class="menu-link-activitylog" href="https://bugs.launchpad.net/gvfs/+bug/1855318/+activity">See full activity log</a> </div> <div class="clearfix"></div> <div align="center" id="add-comment-login-first"> To post a comment you must <a href="+login?comments=all">log in</a>. </div> </div><!-- class="top-portlet" --> </div><!--- id="maincontentsub"--> <div> <div id="duplicate-form-container"></div> <div id="privacy-form-container"></div> </div> </div> </div><!-- yui-b --> </div><!-- yui-main --> <div id="side-portlets" class="yui-b side"> <div id="involvement" class="portlet"> <ul class="involvement"> <li class="single"> <a class="sprite bugs" href="/gvfs/+filebug"> Report a bug </a> </li> </ul> </div> <div id="privacy" class="first portlet public"> <div id="privacy-text"> <span id="information-type-summary" class="sprite public">This report contains <strong id="information-type">Public</strong> information </span>&nbsp; <div id="information-type-description" style="padding-top: 5px">Everyone can see this information. </div> </div> </div> <div id="portlet-actions" class="portlet vertical"> <ul id="duplicate-actions"> </ul> <ul id="lock-status-actions"> </ul> </div> <div class="portlet vertical" id="portlet-subscription"> <div class="section"> <div id="current_user_subscription" class="False"> <span>You are</span> <a class="menu-link-subscription sprite modify edit" href="/gvfs/+bug/1855318/+subscribe"> not directly subscribed to this bug's notifications. </a> </div> <div id="sub-unsub-spinner">Subscribing...</div> <ul> <li><a class="menu-link-editsubscriptions sprite modify edit" href="https://bugs.launchpad.net/gvfs/+bug/1855318/+subscriptions" title="View and change your subscriptions to this bug">Edit bug mail</a></li> </ul> </div> <script type="text/javascript"> LPJS.use('io-base', 'node', 'lp.bugs.bugtask_index.portlets.subscription', function(Y) { Y.on('domready', function() { Y.lp.bugs.bugtask_index.portlets.subscription.initialize(); }); }); </script> </div> <div class="portlet vertical" id="portlet-subscribers"> <h2>Other bug subscribers</h2> <div> <div><a class="menu-link-addsubscriber sprite add" href="https://bugs.launchpad.net/gvfs/+bug/1855318/+addsubscriber" title="Launchpad will email that person whenever this bugs changes">Subscribe someone else</a></div> </div> <div id="other-bug-subscribers"></div> </div> <div class="portlet" id="portlet-attachments"> <h2>Bug attachments</h2> <ul> <li class="download-attachment"> <a href="https://bugs.launchpad.net/gvfs/+bug/1855318/+attachment/5310050/+files/Dependencies.txt" class="sprite download-icon">Dependencies.txt</a> <a class="sprite edit action-icon" title="Change attachment details" href="/gvfs/+bug/1855318/+attachment/5310050">Edit</a> </li> <li class="download-attachment"> <a href="https://bugs.launchpad.net/gvfs/+bug/1855318/+attachment/5310051/+files/ProcCpuinfoMinimal.txt" class="sprite download-icon">ProcCpuinfoMinimal.txt</a> <a class="sprite edit action-icon" title="Change attachment details" href="/gvfs/+bug/1855318/+attachment/5310051">Edit</a> </li> </ul> <ul> <li> <a class="sprite add" href="/gvfs/+bug/1855318/+addcomment">Add attachment</a> </li> </ul> </div> <div class="portlet" id="portlet-watches"> <h2>Remote bug watches</h2> <ul> <li> <span class="sprite bug-remote"></span> <a class="link-external" href="https://bugzilla.redhat.com/show_bug.cgi?id=1437754">redhat-bugs #1437754</a> <br />[<span>CLOSED WONTFIX</span>] <a class="sprite edit action-icon" title="Change watch details" href="/bugs/1855318/+watch/141125">Edit</a> </li> <li> <span class="sprite bug-remote"></span> <a class="link-external" href="https://gitlab.gnome.org/GNOME/gvfs/-/issues/287">auto-gitlab.gnome.org-gnome-gvfs-- #287</a> <br />[<span>opened 1. Bug 5. UDisks2</span>] <a class="sprite edit action-icon" title="Change watch details" href="/bugs/1855318/+watch/141185">Edit</a> </li> </ul> <p>Bug watches keep track of this bug in other bug trackers.</p> </div> </div><!-- yui-b side --> </div><!-- yui-t4 --> <div id="footer" class="footer"> <div class="lp-arcana"> <div class="lp-branding"> <a href="https://launchpad.net/"><img src="/@@/launchpad-footer-logo.svg" alt="Launchpad" width="65" height="18" /></a> &nbsp;&bull;&nbsp; <a href="https://launchpad.net/+tour">Take the tour</a> &nbsp;&bull;&nbsp; <a href="https://help.launchpad.net/">Read the guide</a> &nbsp; <form id="globalsearch" method="get" accept-charset="UTF-8" action="https://launchpad.net/+search"> <input type="search" id="search-text" name="field.text" /> <input type="image" src="/@@/search" style="vertical-align:5%" alt="Search Launchpad" /> </form> </div> </div> <div class="colophon"> &copy; 2004 <a href="http://canonical.com/">Canonical&nbsp;Ltd.</a> &nbsp;&bull;&nbsp; <a href="https://launchpad.net/legal">Terms of use</a> &nbsp;&bull;&nbsp; <a href="https://www.ubuntu.com/legal/dataprivacy">Data privacy</a> &nbsp;&bull;&nbsp; <a href="/feedback">Contact Launchpad Support</a> &nbsp;&bull;&nbsp; <a href="http://blog.launchpad.net/">Blog</a> &nbsp;&bull;&nbsp; <a href="https://canonical.com/careers">Careers</a> &nbsp;&bull;&nbsp; <a href="https://ubuntu.social/@launchpadstatus">System status</a> <span id="lp-version"> &nbsp;&bull;&nbsp; 22ade00 (<a href="https://dev.launchpad.net/">Get the code!</a>) </span> </div> </div> </div><!-- yui-d0--> <script id="json-cache-script">LP.cache = {"related_features": {}, "bug": {"self_link": "https://bugs.launchpad.net/api/devel/bugs/1855318", "web_link": "https://bugs.launchpad.net/bugs/1855318", "resource_type_link": "https://bugs.launchpad.net/api/devel/#bug", "id": 1855318, "private": false, "information_type": "Public", "name": null, "title": "autofs tries to find .xdg-volume-info and autorun.inf", "description": "# automount -f -v\nStarting automounter version 5.1.5, master map /etc/auto.master\nusing kernel protocol version 5.05\nmounted indirect on /home/\u003cuser\u003e/mnt with timeout 300, freq 75 seconds\nattempting to mount entry /home/\u003cuser\u003e/mnt/.xdg-volume-info\nkey \".xdg-volume-info\" not found in map source(s).\nfailed to mount /home/\u003cuser\u003e/mnt/.xdg-volume-info\nattempting to mount entry /home/\u003cuser\u003e/mnt/autorun.inf\nkey \"autorun.inf\" not found in map source(s).\nfailed to mount /home/\u003cuser\u003e/mnt/autorun.inf\n\n/etc/auto.master:\n+dir:/etc/auto.master.d\n\n/etc/auto.master.d:\n-rw-r--r-- 1 root root 38 Dez 5 19:10 mnt.autofs\n\n/etc/auto.master.d/mnt.autofs:\n/home/\u003cuser\u003e/mnt file:/etc/auto.mnt\n\n/etc/auto.mnt:\nG -fstype=cifs,multiuser,cruid=$UID,sec=krb5i ://\u003cserverA\u003e/sg\nL -fstype=cifs,multiuser,cruid=$UID,sec=krb5i ://\u003cserverB\u003e/apps\nM -fstype=cifs,multiuser,cruid=$UID,sec=krb5i ://\u003cserverC\u003e/gs\nO -fstype=cifs,multiuser,cruid=$UID,sec=krb5i ://\u003cserverF\u003e/media\nP -fstype=cifs,multiuser,cruid=$UID,sec=krb5i ://\u003cserverB\u003e/pb\nT -fstype=cifs,multiuser,cruid=$UID,sec=krb5i ://\u003cserverD\u003e/ALLG\nV -fstype=cifs,multiuser,cruid=$UID,sec=krb5i ://\u003cserverE\u003e/SW2\nW -fstype=cifs,multiuser,cruid=$UID,sec=krb5i ://\u003cserverD\u003e/sw\nX -fstype=cifs,multiuser,cruid=$UID,sec=krb5i ://\u003cserverB\u003e/depot\nY -fstype=cifs,multiuser,cruid=$UID,sec=krb5i ://\u003cserverA\u003e/sct-muc\nZ -fstype=cifs,multiuser,cruid=$UID,sec=krb5i ://\u003cserverB\u003e/z\n\n\nCould not find any file \"autorun.inf\" or \".xdg-volume-info\" anywhere on my system. Where do these come from?\n\nProblemType: Bug\nDistroRelease: Ubuntu 19.10\nPackage: autofs 5.1.5-1ubuntu1\nProcVersionSignature: Ubuntu 5.3.0-24.26-generic 5.3.10\nUname: Linux 5.3.0-24-generic x86_64\nApportVersion: 2.20.11-0ubuntu8.2\nArchitecture: amd64\nDate: Thu Dec 5 19:12:38 2019\nInstallationDate: Installed on 2019-09-09 (87 days ago)\nInstallationMedia: Xubuntu 19.04 \"Disco Dingo\" - Release amd64 (20190416)\nProcEnviron:\n LANGUAGE=de_DE\n TERM=screen\n PATH=(custom, no user)\n LANG=de_DE.UTF-8\n SHELL=/bin/bash\nSourcePackage: autofs\nUpgradeStatus: No upgrade log present (probably fresh install)", "owner_link": "https://bugs.launchpad.net/api/devel/~tps", "bug_tasks_collection_link": "https://bugs.launchpad.net/api/devel/bugs/1855318/bug_tasks", "duplicate_of_link": null, "date_created": "2019-12-05T18:22:43.615065+00:00", "activity_collection_link": "https://bugs.launchpad.net/api/devel/bugs/1855318/activity", "subscriptions_collection_link": "https://bugs.launchpad.net/api/devel/bugs/1855318/subscriptions", "date_last_updated": "2022-05-20T16:05:54.673543+00:00", "who_made_private_link": null, "date_made_private": null, "heat": 16, "bug_watches_collection_link": "https://bugs.launchpad.net/api/devel/bugs/1855318/bug_watches", "cves_collection_link": "https://bugs.launchpad.net/api/devel/bugs/1855318/cves", "vulnerabilities_collection_link": "https://bugs.launchpad.net/api/devel/bugs/1855318/vulnerabilities", "duplicates_collection_link": "https://bugs.launchpad.net/api/devel/bugs/1855318/duplicates", "attachments_collection_link": "https://bugs.launchpad.net/api/devel/bugs/1855318/attachments", "security_related": false, "latest_patch_uploaded": null, "tags": ["amd64", "apport-bug", "eoan"], "date_last_message": "2020-11-24T18:28:52.701511+00:00", "number_of_duplicates": 0, "message_count": 16, "users_affected_count": 3, "users_unaffected_count": 0, "users_affected_collection_link": "https://bugs.launchpad.net/api/devel/bugs/1855318/users_affected", "users_unaffected_collection_link": "https://bugs.launchpad.net/api/devel/bugs/1855318/users_unaffected", "users_affected_count_with_dupes": 3, "other_users_affected_count_with_dupes": 3, "users_affected_with_dupes_collection_link": "https://bugs.launchpad.net/api/devel/bugs/1855318/users_affected_with_dupes", "messages_collection_link": "https://bugs.launchpad.net/api/devel/bugs/1855318/messages", "lock_status": "Unlocked", "lock_reason": null, "linked_branches_collection_link": "https://bugs.launchpad.net/api/devel/bugs/1855318/linked_branches", "linked_merge_proposals_collection_link": "https://bugs.launchpad.net/api/devel/bugs/1855318/linked_merge_proposals", "http_etag": "\"9c2469997d5b13ce22def0e45d59f8477ab89dcc-fb82adfa443bf7b10f46ce780b5071a53441ea95\""}, "subscribers_portlet_url_data": {"web_link": "https://bugs.launchpad.net/bugs/1855318", "self_link": "https://bugs.launchpad.net/api/devel/bugs/1855318"}, "total_comments_and_activity": 31, "initial_comment_batch_offset": 41, "first visible_recent_comment": -25, "bugtask_data": {"2659416": {"id": 2659416, "row_id": "tasksummary2659416", "form_row_id": "task2659416", "bugtask_path": "/gvfs/+bug/1855318", "prefix": "gvfs", "targetname": "gvfs", "bug_title": "autofs tries to find .xdg-volume-info and autorun.inf", "assignee_value": null, "assignee_is_team": null, "assignee_vocabulary": "AllUserTeamsParticipation", "assignee_vocabulary_filters": [], "hide_assignee_team_selection": true, "user_can_unassign": false, "user_can_delete": false, "delete_link": "https://bugs.launchpad.net/gvfs/+bug/1855318/+delete", "target_is_product": true, "status_widget_items": [{"name": "New", "value": "New", "description": "Not looked at yet.\n", "description_css_class": "choice-description", "style": "", "help": "", "disabled": false, "css_class": "statusNEW"}], "status_value": "New", "importance_widget_items": "[]", "importance_value": "Unknown", "milestone_widget_items": "[]", "milestone_value": null, "user_can_edit_assignee": false, "user_can_edit_milestone": false, "user_can_edit_status": false, "user_can_edit_importance": false}, "2555901": {"id": 2555901, "row_id": "tasksummary2555901", "form_row_id": "task2555901", "bugtask_path": "/ubuntu/+source/gvfs/+bug/1855318", "prefix": "ubuntu_gvfs", "targetname": "gvfs (Ubuntu)", "bug_title": "autofs tries to find .xdg-volume-info and autorun.inf", "assignee_value": null, "assignee_is_team": null, "assignee_vocabulary": "AllUserTeamsParticipation", "assignee_vocabulary_filters": [], "hide_assignee_team_selection": true, "user_can_unassign": false, "user_can_delete": false, "delete_link": "https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/1855318/+delete", "target_is_product": false, "status_widget_items": [{"name": "Triaged", "value": "Triaged", "description": "Verified by the bug supervisor.\n", "description_css_class": "choice-description", "style": "", "help": "", "disabled": false, "css_class": "statusTRIAGED"}], "status_value": "Triaged", "importance_widget_items": "[]", "importance_value": "Low", "milestone_widget_items": "[]", "milestone_value": null, "user_can_edit_assignee": false, "user_can_edit_milestone": false, "user_can_edit_status": false, "user_can_edit_importance": false}}, "information_type_data": {"PUBLIC": {"value": "PUBLIC", "description": "Everyone can see this information.\n", "name": "Public", "order": 0, "is_private": false, "description_css_class": "choice-description"}, "PUBLICSECURITY": {"value": "PUBLICSECURITY", "description": "Everyone can see this security related information.\n", "name": "Public Security", "order": 1, "is_private": false, "description_css_class": "choice-description"}, "PRIVATESECURITY": {"value": "PRIVATESECURITY", "description": "Only the security group can see this information.\n ", "name": "Private Security", "order": 2, "is_private": true, "description_css_class": "choice-description"}, "USERDATA": {"value": "USERDATA", "description": "Only shared with users permitted to see private user information.\n", "name": "Private", "order": 3, "is_private": true, "description_css_class": "choice-description"}}, "bug_is_private": false, "context": {"self_link": "https://bugs.launchpad.net/api/devel/gvfs/+bug/1855318", "web_link": "https://bugs.launchpad.net/gvfs/+bug/1855318", "resource_type_link": "https://bugs.launchpad.net/api/devel/#bug_task", "bug_link": "https://bugs.launchpad.net/api/devel/bugs/1855318", "milestone_link": null, "status": "New", "status_explanation": null, "importance": "Unknown", "importance_explanation": null, "assignee_link": null, "bug_target_display_name": "gvfs", "bug_target_name": "gvfs", "bug_watch_link": "https://bugs.launchpad.net/api/devel/bugs/1855318/+watch/141185", "date_assigned": null, "date_created": "2020-11-25T08:50:24.684078+00:00", "date_confirmed": null, "date_incomplete": null, "date_in_progress": null, "date_closed": null, "date_left_new": null, "date_triaged": null, "date_fix_committed": null, "date_fix_released": null, "date_left_closed": null, "owner_link": "https://bugs.launchpad.net/api/devel/~seb128", "target_link": "https://bugs.launchpad.net/api/devel/gvfs", "title": "Bug #1855318 in gvfs: \"autofs tries to find .xdg-volume-info and autorun.inf\"", "related_tasks_collection_link": "https://bugs.launchpad.net/api/devel/gvfs/+bug/1855318/related_tasks", "is_complete": false, "http_etag": "\"8c2cdd3000b6072ebf98967bd3da4ceaa470233b-11fddc2b490836928734b6103d85e210c557d359\""}};</script> </body> <!-- Facet name: bugs Page type: main_side Has global search: True Has application tabs: True Has side portlets: True At least 56 queries/external actions issued in 0.69 seconds Features: {'profiling.enabled': None, 'hard_timeout': '9000', 'app.mainsite_only.canonical_url': None, 'js.yui_version': None, 'app.maintenance_message': None, 'bugs.affected_count_includes_dupes.disabled': None, 'baselayout.careers_link.disabled': None, 'visible_render_time': None} r22ade00 --> </html>

Pages: 1 2 3 4 5 6 7 8 9 10