The Wayback Machine - https://web.archive.org/web/20200625214853/https://github.com/topics/daemon
Skip to content
#

daemon

Here are 740 public repositories matching this topic...

AshishShanker
AshishShanker commented Jun 22, 2018

I noticed that even if I don't specify the stopparentfirst parameter when initializing the Service object, I always get the stopparentfirst argument and a value of undefined, instead of the default of false-y.

For example, the following code:

const svc = new Service(
    {
        name: 'SomeName"
        description: 'SomeDescription',
        script:'somefile.js',
    }
freeradius-server
arr2036
arr2036 commented Oct 30, 2019

Issue type

  • Defect - Unexpected behaviour (obvious or verified by project member).

Defect

How to reproduce the issue

When querying a non-cached group membership by name, debug output states that the object the user is a member of was the parent of the group object.

if (&LDAP-Group == 'my-group') {
   # success
}

Will emit a debug message similar to `ou=groups,dc=e

Keruspe
Keruspe commented Aug 7, 2018

Currently, plugins are either hard-enabled or auto-magically enabled depending on the presence or absence of some libraries at compilation time.
It would be great to have actual switches like -Dsdl=true which would fail if sdl is not present and -Dsdl=false which would disable the sdl plugin event if sdl is available.

kimus
kimus commented Feb 27, 2020
[[script]]
namespace = "some.Customer"
routing = true
script = """
module.exports = function(doc) {
  var meta = { type: 'customer' };
  var id = doc.userId;
  if (id) {
    meta.parent = id;
    meta.routing = id;
  }
  doc._meta_monstache = meta;
  return _.omit(doc, "userId");
}
"""
TRACE 2020/02/27 11:41:28 HTTP/1.1 400 Bad Request
Content-Type: application
persuader
persuader commented Mar 24, 2016

the script coulnd get all the ip addresses of the server interfaces when running xen dom0.
ifconfig does not show aliases for the bridge interface xenbr0 so server blocks his own ip-s.

i changed the line

SERVER_IP_LIST=ifconfig | grep "inet " | awk '{print $2}' | sed "s/addr://g" | xargs | sed -e 's/ /|/g'

to
SERVER_IP_LIST=`( hostname -I ; echo 127.0.0.1 ) | cat | sed ':a;N;$!ba;s/\n/ /g'

pault84
pault84 commented May 24, 2018

Is this a BUG REPORT or FEATURE REQUEST?:

Feature request

What happened:

Had someone ask what unit size was required for doing a volume create.
Documentation doesn't specifiy what unit of measurement is required to specify size.
Our model documentation should have "bytes / Kilobytes / Kibibytes etcetera"

What you expected to happen:

Show the expected unit in the docum

Improve this page

Add a description, image, and links to the daemon topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the daemon topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.