Displaying 6 results from an estimated 6 matches for "somelik".
Did you mean:
somelike
2005 Jun 04
1
on "source connect" script?
Hello All, I would like to run a script whenever a source connects to my
icecast server, somelike on source connect run xyz script. is this
possible?
What i would like to achive is to have an email sent out whenever a
source connects and also update a database with the fact it connected.
any hints or tips on how to achive this would be welcomed
many thanks in advance
stuart nixon
2020 Oct 09
3
Re: [PATCH v3 8/8] lib/canonical-name.c: Hide EINVAL error from underlying API call.
...an find it the file not existing, but it means this function might fail
without an error message if I understand it correctly.
> ret = guestfs_lvm_canonical_lv_name (g, device);
>- if (ret == NULL)
>+ guestfs_pop_error_handler (g);
>+ /* EINVAL is expected if the device is somelike a LUKS- or
>+ * BitLocker-encrypted volume, so simply return the original
>+ * name in that case.
>+ */
>+ if (ret == NULL && guestfs_last_errno (g) == EINVAL)
> ret = safe_strdup (g, device);
> }
> else
>--
>2.27.0
>
>____________...
2020 Sep 17
0
[PATCH v3 8/8] lib/canonical-name.c: Hide EINVAL error from underlying API call.
.../") ||
STRPREFIX (device, "/dev/dm-")) {
- /* XXX hide errors */
+ guestfs_push_error_handler (g, NULL, NULL);
ret = guestfs_lvm_canonical_lv_name (g, device);
- if (ret == NULL)
+ guestfs_pop_error_handler (g);
+ /* EINVAL is expected if the device is somelike a LUKS- or
+ * BitLocker-encrypted volume, so simply return the original
+ * name in that case.
+ */
+ if (ret == NULL && guestfs_last_errno (g) == EINVAL)
ret = safe_strdup (g, device);
}
else
--
2.27.0
2003 May 03
2
Error working with X101P and S400P cards (fwd)
can somebody that has these hardwares(X101P and S400P) working on his
asterisk system please assist..................
you can send the solution to austino@skannet.com.....
the error message is what i have below.
---------- Forwarded message ----------
Date: Thu, 1 May 2003 21:01:21 +0100 (WAT)
From: austino@skannet.com
To: asterisk-user@lists.digium.com
Subject: Error working with X101P and
2020 Sep 17
13
[PATCH v3 0/8] Windows BitLocker support.
As discussed in the emails today, this is the third version addressing
most points from the v1/v2 review.
You will need to pair this with the changes in libguestfs-common from
this series:
https://www.redhat.com/archives/libguestfs/2020-September/msg00050.html
Rich.
2011 Jul 28
14
Actionmailer Help Needed
Hello everyone,
Nice to meet you all, am new to the forum.
I''m stuck with rake / actionmailer trying to display a set of found
records.
We have a simple actionmailer rake task that is supposed to send a daily
email digest of tasks that are due for a specific user. So far, it''s
working but the email only displays the first message.
In my task model
scope :tasksdue, lambda {