Bug#934208: Open file limits not set in systemd unit

2019-08-08 Thread Sammy Atmadja
  




   





   
 [Install]  




   
 WantedBy=multi-user.target 




   





   





   
Sammy Atmadja   




   

Disclaimer: https://www.transtrend.com/en/disclaimer/



Bug#868299: pkcs15-init aborts with failed assertion when operating on Feitian smartcards

2017-07-14 Thread Sammy Atmadja
Package: opensc
Version: 0.16.0-3

When invoking pkcs15-init -E to erase a Feitian smartcard, the command aborts 
with the following message:

pkcs15-init: sc.c:721: sc_file_valid: Assertion `file != NULL' failed.
Aborted 

   

This bug has already been fixed upstream: 
https://github.com/OpenSC/OpenSC/commit/f64c71da28d1c1401445f6e8fa45bc079d5b6cd9

Please consider backporting the fix (see patch below). I can confirm that 
applying the patch fixes the issue for me.

Index: opensc-0.16.0/src/libopensc/card-entersafe.c
===
--- opensc-0.16.0.orig/src/libopensc/card-entersafe.c
+++ opensc-0.16.0/src/libopensc/card-entersafe.c
@@ -493,7 +493,7 @@ static int entersafe_select_fid(sc_card_
path.len=2;

r = iso_ops->select_file(card,,);
-   if(r) sc_file_free(file);
+   if(r && file) sc_file_free(file);
SC_TEST_RET(card->ctx, SC_LOG_DEBUG_NORMAL, r, "APDU transmit failed");

/* update cache */

Thanks,
Sammy.

Disclaimer: http://transtrend.com/disclaimer.txt 



Bug#795564: zeal: Wrong version number

2015-08-15 Thread Sammy Tahtah
Package: zeal
Version: 1:0.1.1-1
Severity: minor

Dear Maintainer,

While clicking the Help/About Zeal the version number is 0.0.0.
When clicking Help/Check for Update it always ask to install
the 0.1.1 version wich is the one already installed.

Best regards,
--
Sammy Tahtah

-- System Information:
Debian Release: jessie/sid
  APT prefers trusty-updates
  APT policy: (500, 'trusty-updates'), (500, 'trusty-security'), (500, 'trusty')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.13.0-24-generic (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages zeal depends on:
ii  libarchive133.1.2-7ubuntu2.1
ii  libc6   2.19-0ubuntu6.6
ii  libgcc1 1:4.9.1-0ubuntu1
ii  libqt5core5a5.4.2+dfsg-4
ii  libqt5gui5  5.4.2+dfsg-4
ii  libqt5network5  5.4.2+dfsg-4
ii  libqt5sql5  5.4.2+dfsg-4
ii  libqt5webkit5   5.4.2+dfsg-2
ii  libqt5widgets5  5.4.2+dfsg-4
ii  libstdc++6  5.1.1-14
ii  libx11-62:1.6.2-1ubuntu2

zeal recommends no packages.

zeal suggests no packages.

-- no debconf information



Bug#795561: zeal: Missing dependency libqt5sql5-sqlite

2015-08-15 Thread Sammy Tahtah
Package: zeal
Version: 1:0.1.1-1
Severity: grave
Tags: patch
Justification: renders package unusable

Dear Maintainer,

The installation of the package works without error.
At runtime while trying to download new docsets, the download works well but
the docsets doesn't show because of the missing dependency.

The following error message comes up 6 times:
QSqlDatabase: QSQLITE driver not loaded
QSqlDatabase: available drivers:
SQL Error: Driver not loaded Driver not loaded

Installing libqt5sql5-sqlite fixes the issue.

Best regards,
--
Sammy Tahtah



-- System Information:
Debian Release: jessie/sid
  APT prefers trusty-updates
  APT policy: (500, 'trusty-updates'), (500, 'trusty-security'), (500, 'trusty')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.13.0-24-generic (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages zeal depends on:
ii  libarchive133.1.2-7ubuntu2.1
ii  libc6   2.19-0ubuntu6.6
ii  libgcc1 1:4.9.1-0ubuntu1
ii  libqt5core5a5.4.2+dfsg-4
ii  libqt5gui5  5.4.2+dfsg-4
ii  libqt5network5  5.4.2+dfsg-4
ii  libqt5sql5  5.4.2+dfsg-4
ii  libqt5webkit5   5.4.2+dfsg-2
ii  libqt5widgets5  5.4.2+dfsg-4
ii  libstdc++6  5.1.1-14
ii  libx11-62:1.6.2-1ubuntu2

zeal recommends no packages.

zeal suggests no packages.

-- no debconf information



Bug#788183: Works for me (upstream patch)

2015-07-13 Thread Sammy Atmadja
Hi,

The upstream patch
https://github.com/rsyslog/rsyslog/commit/73c9a28653d4e92a6c71210232a83b4b72cdf778
applied on top of 8.4.2-1 seems to be working for me (running for a
couple of minutes now).

Sammy

Disclaimer: http://transtrend.com/disclaimer.txt 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#789887: Uses cpu when remote pulse server is unavailable

2015-06-25 Thread Sammy Atmadja
Package: kmix
Version: 4:4.14.0-1
Severity: normal
Tags: patch

When PULSE_SERVER is set to connect to a remote location and the
remote is currently unavailable, kmix tries to reconnect up to 20
times per second. This results in a significant cpu load. The bug has
already been reported upstream as KDE bug #339913
(https://bugs.kde.org/show_bug.cgi?id=339913). Based on the comments
in the upstream bugreport I made this (crude) patch below, which works
for me.

Sammy

Index: kmix-4.14.0/backends/mixer_pulse.cpp
===
--- kmix-4.14.0.orig/backends/mixer_pulse.cpp
+++ kmix-4.14.0/backends/mixer_pulse.cpp
@@ -37,6 +37,8 @@
 #  include canberra.h
 #endif
 
+#include time.h
+
 // PA_VOLUME_UI_MAX landed in pulseaudio-0.9.23, so this can be removed when/if
 // minimum requirement is ever bumped up (from 0.9.12 currently)
 #ifndef PA_VOLUME_UI_MAX
@@ -716,7 +718,14 @@ static void context_state_callback(pa_co
 if (s_mixers.contains(KMIXPA_PLAYBACK)) {
 kWarning(67100)  Connection to PulseAudio daemon closed. 
Attempting reconnection.;
 s_pulseActive = UNKNOWN;
-QTimer::singleShot(50, s_mixers[KMIXPA_PLAYBACK], 
SLOT(reinit()));
+   static time_t last_timestamp = 0;
+   time_t current_time = time(NULL);
+   if ((current_time - last_timestamp)  3) {
+ QTimer::singleShot(50, s_mixers[KMIXPA_PLAYBACK], 
SLOT(reinit()));
+   } else {
+ QTimer::singleShot(6, s_mixers[KMIXPA_PLAYBACK], 
SLOT(reinit()));
+   }
+   last_timestamp = current_time;
 }
 }
 }


Disclaimer: http://transtrend.com/disclaimer.txt Index: kmix-4.14.0/backends/mixer_pulse.cpp
===
--- kmix-4.14.0.orig/backends/mixer_pulse.cpp
+++ kmix-4.14.0/backends/mixer_pulse.cpp
@@ -37,6 +37,8 @@
 #  include canberra.h
 #endif
 
+#include time.h
+
 // PA_VOLUME_UI_MAX landed in pulseaudio-0.9.23, so this can be removed when/if
 // minimum requirement is ever bumped up (from 0.9.12 currently)
 #ifndef PA_VOLUME_UI_MAX
@@ -716,7 +718,14 @@ static void context_state_callback(pa_co
 if (s_mixers.contains(KMIXPA_PLAYBACK)) {
 kWarning(67100)  Connection to PulseAudio daemon closed. Attempting reconnection.;
 s_pulseActive = UNKNOWN;
-QTimer::singleShot(50, s_mixers[KMIXPA_PLAYBACK], SLOT(reinit()));
+		static time_t last_timestamp = 0;
+		time_t current_time = time(NULL);
+		if ((current_time - last_timestamp)  3) {
+		  QTimer::singleShot(50, s_mixers[KMIXPA_PLAYBACK], SLOT(reinit()));
+		} else {
+		  QTimer::singleShot(6, s_mixers[KMIXPA_PLAYBACK], SLOT(reinit()));
+		}
+		last_timestamp = current_time;
 }
 }
 }


Bug#789566: Jessie guest 100% steal time after live migration

2015-06-22 Thread Sammy Atmadja
Package: qemu-kvm
Version: 1:2.1+dfsg-12~bpo70+1
Severity: normal

I have several jessie guest vm's (kernel 3.16) running on wheezy
hosts. After a live migration the guest cpu reports 100% steal
time. This can only be fixed with a reboot of the guest vm. The
problem does not occur with wheezy guests (kernel 3.2).

Here (https://code.google.com/p/ganeti/issues/detail?id=986) it is
suggested that disabling kvm_steal_time feature fixes the
problem. Unfortunately the qemu-kvm -cpu parameter is not exposed
through libvirtd .

Sammy

Disclaimer: http://transtrend.com/disclaimer.txt 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#788183: postgresql logs filling with WARNING: there is already a transaction in progress

2015-06-09 Thread Sammy Atmadja
Reported upstream: https://github.com/rsyslog/rsyslog/issues/399

Sammy


Disclaimer: http://transtrend.com/disclaimer.txt 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#788183: postgresql logs filling with WARNING: there is already a transaction in progress

2015-06-09 Thread Sammy Atmadja
Package: rsyslog-pgsql
Version: 8.4.2-1
Severity: grave
Justification: renders package unusable

Dear Maintainer,

I have a setup where host_a running rsyslog writes logs to a remote
server host_b running postgresql 9.1 (a server running wheezy at the
moment). Since upgrading host_a (the rsyslog server) from wheezy to
jessie the postgresql logs on host_b started filling up with lines
like:

--- BEGIN host_b /var/log/postgresql/postgresql-9.1-main.log ---

2015-06-09 08:11:27 CEST WARNING:  there is already a transaction in progress
2015-06-09 08:11:27 CEST WARNING:  there is already a transaction in progress
2015-06-09 08:11:27 CEST WARNING:  there is already a transaction in progress
2015-06-09 08:11:27 CEST WARNING:  there is already a transaction in progress
2015-06-09 08:11:27 CEST WARNING:  there is already a transaction in progress
2015-06-09 08:11:27 CEST WARNING:  there is already a transaction in progress
2015-06-09 08:11:27 CEST WARNING:  there is already a transaction in progress
2015-06-09 08:11:27 CEST WARNING:  there is already a transaction in progress
2015-06-09 08:11:27 CEST WARNING:  there is already a transaction in progress
2015-06-09 08:11:27 CEST WARNING:  there is already a transaction in progress
2015-06-09 08:11:27 CEST WARNING:  there is already a transaction in progress
2015-06-09 08:11:27 CEST WARNING:  there is already a transaction in progress
2015-06-09 08:11:27 CEST WARNING:  there is already a transaction in progress
2015-06-09 08:11:27 CEST WARNING:  there is already a transaction in progress
2015-06-09 08:11:27 CEST WARNING:  there is already a transaction in progress
2015-06-09 08:11:27 CEST WARNING:  there is already a transaction in progress
2015-06-09 08:11:27 CEST WARNING:  there is already a transaction in progress

--- END ---

(hundreds of lines per second!)

The configuration on host_a for ompgsql :

--- BEGIN host_a /etc/rsyslog.d/ompgsql.conf ---

# Provides UDP syslog reception
module(load=imudp)
input(type=imudp port=514)

# Provides TCP syslog reception
module(load=imtcp)
input(type=imtcp port=514)

module(load=mmutf8fix)
action(type=mmutf8fix mode=controlcharacters)

$template pgsqltemplate,INSERT INTO logs (host, facility, priority, level, 
tag, \
  program, msg, hostname) VALUES ( '%fromhost-ip%', 
'%syslogfacility-text%', '%syslogpriority-text%', \
  '%syslogseverity-text%','%syslogtag%', '%programname%', '%msg%' , 
'%hostname%'),stdsql

$ModLoad ompgsql
*.* :ompgsql:caradhras.local,syslog,syslog,;pgsqltemplate

--- END ---

For now I have downgraded to rsyslog and rsyslog-pgsql version
7.6.3-2~bpo70+1 from wheezy-backports, which does not have this
problem.

Sammy

-- System Information:
Debian Release: 8.1
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.16.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)


Disclaimer: http://transtrend.com/disclaimer.txt 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#765363: fixed in 3.16.7

2014-12-21 Thread Sammy Atmadja
Looks like it's fixed in linux-image-3.16.0-0.bpo.4-amd64 3.16.7-ckt2-1~bpo70+1 
.

Sammy


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#765363: linux-image-3.16-0.bpo.2-amd64: second node fails to join cluster and mount ocfs2 partition

2014-10-14 Thread Sammy Atmadja
Package: src:linux
Version: 3.16.3-2~bpo70+1
Severity: important

Dear Maintainer,

Package linux-image-amd64 from wheezy-backports was upgraded,
resulting in installing linux-image-3.16-0.bpo.2-amd64 version
3.16.3-2~bpo70+1 . Previous kernel was linux-image-3.14-0.bpo.2-amd64
version 3.14.15-2~bpo70+1 .

We have several hosts that are part of an ocfs2 cluster. These hosts
mount a shared ocfs2 filesystem over iscsi/multipath.

The second node that tries to mount an ocfs2 partition fails with the
following messages in dmesg:

[  394.938173] o2net: Connected to node zotac (num 0) at 10.247.9.96:
[  401.151541] o2net: Connection to node zotac (num 0) at 10.247.9.96: 
shutdown, state 8
[  401.156642] o2net: Connection to node zotac (num 0) at 10.247.9.96: 
shutdown, state 7
[  401.161717] o2net: No longer connected to node zotac (num 0) at 
10.247.9.96:
[  401.166848] (mount.ocfs2,3573,1):dlm_send_nodeinfo:1294 ERROR: node mismatch 
-112, node 0
[  401.171475] (mount.ocfs2,3573,1):dlm_try_to_join_domain:1681 ERROR: status = 
-112
[  401.176085] (mount.ocfs2,3573,1):dlm_send_one_join_cancel:1399 ERROR: Error 
-107 when sending message 512 (key 0x666c6172) to node 0
[  401.180308] (mount.ocfs2,3573,1):dlm_send_join_cancels:1433 ERROR: Error 
return -107 cancelling join on node 0
[  401.184557] (mount.ocfs2,3573,1):dlm_send_join_cancels:1440 ERROR: status = 
-107
[  401.188783] (mount.ocfs2,3573,1):dlm_try_to_join_domain:1718 ERROR: status = 
-107
[  401.192638] (mount.ocfs2,3573,1):dlm_join_domain:1951 ERROR: status = -112
[  401.196597] (mount.ocfs2,3573,0):dlm_register_domain:2209 ERROR: status = 
-112
[  401.200821] (mount.ocfs2,3573,0):o2cb_cluster_connect:368 ERROR: status = 
-112
[  401.204571] (mount.ocfs2,3573,0):ocfs2_dlm_init:3001 ERROR: status = -112
[  401.208339] (mount.ocfs2,3573,1):ocfs2_mount_volume:1860 ERROR: status = -112
[  401.212110] ocfs2: Unmounting device (254,0) on (node 0)
[  401.215811] (mount.ocfs2,3573,1):ocfs2_fill_super:1234 ERROR: status = -112

Kernel version 3.14 from backports has no problem mounting ocfs2
filesystems.

I have tried compiling a kernel from upstream (using the config from
the 3.16 package) with the following result:
3.15.10 is ok
3.16.0 is ok
3.16.2 is ok
3.16.3 is ok
3.16.5 is ok
3.17 fails to mount

-- Package-specific info:
** Version:
Linux version 3.16-0.bpo.2-amd64 (debian-ker...@lists.debian.org) (gcc version 
4.6.3 (Debian 4.6.3-14) ) #1 SMP Debian 3.16.3-2~bpo70+1 (2014-09-21)

** Command line:
BOOT_IMAGE=/boot/vmlinuz-3.16-0.bpo.2-amd64 
root=UUID=462497b3-37bd-48de-9032-21946b5f6ea3 ro transparent_hugepage=always 
elevator=deadline

** Not tainted

** Kernel log:
[3.923864] usb 2-1.1.4: New USB device found, idVendor=0430, idProduct=00a2
[3.923929] usb 2-1.1.4: New USB device strings: Mfr=0, Product=1, 
SerialNumber=0
[3.923986] usb 2-1.1.4: Product: Sun USB Keyboard
[3.952944] Adding 5874684k swap on /dev/sda5.  Priority:-1 extents:1 
across:5874684k SSFS
[4.032812] device-mapper: multipath: version 1.7.0 loaded
[4.055175] loop: module loaded
[4.124380] usb 2-1.1.2: new full-speed USB device number 6 using ehci-pci
[4.221818] usb 2-1.1.2: New USB device found, idVendor=076b, idProduct=3021
[4.221886] usb 2-1.1.2: New USB device strings: Mfr=1, Product=2, 
SerialNumber=0
[4.221944] usb 2-1.1.2: Product: Smart Card Reader USB
[4.221986] usb 2-1.1.2: Manufacturer: OMNIKEY AG
[4.235370] hidraw: raw HID events driver (C) Jiri Kosina
[4.241544] usbcore: registered new interface driver usbhid
[4.241600] usbhid: USB HID core driver
[4.245707] input: USB Mouse as 
/devices/pci:00/:00:1d.0/usb2/2-1/2-1.1/2-1.1.3/2-1.1.3:1.0/0003:0566:4006.0001/input/input6
[4.245997] hid-generic 0003:0566:4006.0001: input,hidraw0: USB HID v1.11 
Mouse [USB Mouse] on usb-:00:1d.0-1.1.3/input0
[4.246344] input: Sun USB Keyboard as 
/devices/pci:00/:00:1d.0/usb2/2-1/2-1.1/2-1.1.4/2-1.1.4:1.0/0003:0430:00A2.0002/input/input7
[4.246568] hid-generic 0003:0430:00A2.0002: input,hidraw1: USB HID v1.10 
Keyboard [Sun USB Keyboard] on usb-:00:1d.0-1.1.4/input0
[4.731698] random: nonblocking pool is initialized
[4.828369] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
[5.011911] ocfs2: Registered cluster interface o2cb
[5.029420] OCFS2 User DLM kernel interface loaded
[5.045546] o2net: Error -99 while binding socket at 10.247.9.97:
[5.355578] Loading iSCSI transport class v2.0-870.
[5.364140] iscsi: registered transport (tcp)
[5.383780] iscsi: registered transport (iser)
[5.592223] e1000e :00:19.0: irq 40 for MSI/MSI-X
[5.696001] e1000e :00:19.0: irq 40 for MSI/MSI-X
[5.696167] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[5.723914] ip6_tables: (C) 2000-2006 Netfilter Core Team
[5.776325] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[5.811302] ip_tables: (C) 2000-2006 Netfilter Core 

Bug#745708: open-iscsi: umountiscsi.sh prematurely exits when encountering targets without block devices

2014-04-25 Thread Sammy Atmadja

 Patch looks good. But just a quick question. If the specific target
 session does not have any block device, wouldn't BLOCK_FILE be empty
 and thus not fall under the if condition ?

BLOCK_FILE will not be empty, and *that* is exactly the root of the 
problem. When the wildcards in the following line:
for BLOCK_FILE in $SESSION_DIR/target*/*\:*/block/*; do
do not match anything, BLOCK_FILE will be: 
$SESSION_DIR/target*/*\:*/block/*
like for ex. in my case : 
/sys/devices/platform/host5/session3/target*/*:*/block/*

In the next line we strip all but the last part, so we end up with *, 
and a few lines later basically try to umount /dev/* .

It's due to the somewhat unintuitive behaviour of the * wildcard. When 
it doesn't match, you get the litteral * .

Sammy

Disclaimer: http://transtrend.com/disclaimer.txt 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#745629: [Pkg-libvirt-maintainers] Bug#745629: virtinst: virt-install complains about virStream object not having an attribute upload and fails

2014-04-24 Thread Sammy Atmadja
The patch from #745541 seems to work for me.

Thanks,
Sammy

- Original Message -
 See also #745541 for the proposed fix. Feedback if this fixes the
 issue
 for you would be welcome. Note that you also need the latest
 python-libvirt from bpo (1.2.1-2~bpo70+1).
 Cheers,
  -- Guido
 

Disclaimer: http://transtrend.com/disclaimer.txt 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#745708: open-iscsi: umountiscsi.sh prematurely exits when encountering targets without block devices

2014-04-24 Thread Sammy Atmadja
Package: open-iscsi
Version: 2.0.873-3
Severity: normal
Tags: patch

Dear Maintainer,

While rebooting a server with iscsi partitions I encountered bug
#691732 . Seeing that #691732 was fixed in version
2.0.873+git0.3b4b4500-1 of open-iscsi I looked over the changes and
noticed that if umountiscsi.sh finds an iscsi target without block
devices it does an exit 0 while in the middle of the for loop and
skips the rest of the targets.

This could be a problem if the target without block devices is not the
last target. See my patch below which continues instead of an exit.

Sammy

-- System Information:
Debian Release: 7.4
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates')
Architecture: amd64 (x86_64)

Kernel: Linux 3.13-0.bpo.1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages open-iscsi depends on:
ii  libc6  2.13-38+deb7u1
ii  udev   204-8~bpo70+1

open-iscsi recommends no packages.

open-iscsi suggests no packages.

-- Configuration Files:
/etc/iscsi/initiatorname.iscsi [Errno 13] Permission denied: 
u'/etc/iscsi/initiatorname.iscsi'

-- no debconf information

--- patch for umountiscsi.sh ---
diff --git a/debian/umountiscsi.sh.init b/debian/umountiscsi.sh.init
index 8f7161b..d5b0591 100644
--- a/debian/umountiscsi.sh.init
+++ b/debian/umountiscsi.sh.init
@@ -56,9 +56,8 @@ do_stop () {
for BLOCK_FILE in $SESSION_DIR/target*/*\:*/block/*; do
BLOCK_DEV=`echo $BLOCK_FILE | sed 's/.*block\///'`
if [ ${BLOCK_DEV} = * ];then
-   log_warning_msg No iSCSI block devices found
-   log_end_msg 0
-   exit 0
+   log_warning_msg iSCSI target without block 
devices found
+   continue
fi
DOS_PARTITIONS=`awk /^\/dev\/$BLOCK_DEV/ { print 
\\$2; }  /proc/mounts`
for DEVICE in $DOS_PARTITIONS; do
--- end patch ---


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#745629: virtinst: virt-install complains about virStream object not having an attribute upload and fails

2014-04-23 Thread Sammy Atmadja
Package: virtinst
Version: 0.600.1-3+deb7u1
Severity: important
Tags: upstream

Dear Maintainer,

Since upgrading qemu-kvm from version 1.1.2 (wheezy) to 1.7.0
(wheezy-backports), and also all associated packages such as
libvirt-bin from wheezy-backports, virt-install fails to create a new
vm.

The output from running virt-install with the --debug option is below:

---start debug output---

[Wed, 23 Apr 2014 16:15:51 virt-install 22583] DEBUG (cli:226) Launched with 
command line:
/usr/bin/virt-install --debug --connect=qemu:///system --name=test --ram=4096 
--vcpus=2 --description=autogenerated vmspawn 2014-04-23T16:15:46 by saa --disk 
path=/srv/vm/test/test.img,size=10,format=qcow2,cache=none,bus=virtio --network 
bridge=br0 
--location=http://ftp.nl.debian.org/debian/dists/wheezy/main/installer-amd64 
--initrd-inject=/tmp/vmspawnFQbeFc/preseed.cfg --extra-args=auto=true 
--noreboot --check-cpu
[Wed, 23 Apr 2014 16:15:51 virt-install 22583] DEBUG (cli:332) Requesting 
libvirt URI qemu:///system
[Wed, 23 Apr 2014 16:15:51 virt-install 22583] DEBUG (cli:334) Received libvirt 
URI qemu:///system
[Wed, 23 Apr 2014 16:15:51 virt-install 22583] DEBUG (virt-install:259) 
Requesting virt method 'default', hv type 'default'.
[Wed, 23 Apr 2014 16:15:51 virt-install 22583] DEBUG (virt-install:469) 
Received virt method 'hvm'
[Wed, 23 Apr 2014 16:15:51 virt-install 22583] DEBUG (virt-install:470) 
Hypervisor name is 'kvm'
[Wed, 23 Apr 2014 16:15:51 virt-install 22583] DEBUG (cli:938) DISPLAY is set: 
graphics defaulting to VNC.
[Wed, 23 Apr 2014 16:15:51 virt-install 22583] DEBUG (cli:956) --graphics 
compat generated: vnc
[Wed, 23 Apr 2014 16:15:51 virt-install 22583] DEBUG (VirtualDisk:240) Path 
'/srv/vm/test' is target for pool 'test'. Creating volume 'test.img'.
[Wed, 23 Apr 2014 16:15:51 virt-install 22583] DEBUG (VirtualDisk:240) Path 
'/srv/vm/test' is target for pool 'test'. Creating volume 'test.img'.
[Wed, 23 Apr 2014 16:15:51 virt-install 22583] DEBUG (DistroInstaller:205) 
DistroInstaller location is a network source.
[Wed, 23 Apr 2014 16:15:51 virt-install 22583] DEBUG (OSDistro:65) Attempting 
to detect distro:
[Wed, 23 Apr 2014 16:15:51 virt-install 22583] DEBUG (ImageFetcher:124) HTTP 
hasFile: didn't find 
http://ftp.nl.debian.org/debian/dists/wheezy/main/installer-amd64/.treeinfo: 
HTTP Error 404: Not Found
[Wed, 23 Apr 2014 16:15:51 virt-install 22583] DEBUG (ImageFetcher:124) HTTP 
hasFile: didn't find 
http://ftp.nl.debian.org/debian/dists/wheezy/main/installer-amd64/Fedora: HTTP 
Error 404: Not Found
[Wed, 23 Apr 2014 16:15:51 virt-install 22583] DEBUG (ImageFetcher:124) HTTP 
hasFile: didn't find 
http://ftp.nl.debian.org/debian/dists/wheezy/main/installer-amd64/Server: HTTP 
Error 404: Not Found
[Wed, 23 Apr 2014 16:15:51 virt-install 22583] DEBUG (ImageFetcher:124) HTTP 
hasFile: didn't find 
http://ftp.nl.debian.org/debian/dists/wheezy/main/installer-amd64/Client: HTTP 
Error 404: Not Found
[Wed, 23 Apr 2014 16:15:52 virt-install 22583] DEBUG (ImageFetcher:124) HTTP 
hasFile: didn't find 
http://ftp.nl.debian.org/debian/dists/wheezy/main/installer-amd64/RedHat: HTTP 
Error 404: Not Found
[Wed, 23 Apr 2014 16:15:52 virt-install 22583] DEBUG (ImageFetcher:124) HTTP 
hasFile: didn't find 
http://ftp.nl.debian.org/debian/dists/wheezy/main/installer-amd64/CentOS: HTTP 
Error 404: Not Found
[Wed, 23 Apr 2014 16:15:52 virt-install 22583] DEBUG (ImageFetcher:124) HTTP 
hasFile: didn't find 
http://ftp.nl.debian.org/debian/dists/wheezy/main/installer-amd64/SL: HTTP 
Error 404: Not Found
[Wed, 23 Apr 2014 16:15:52 virt-install 22583] DEBUG (ImageFetcher:124) HTTP 
hasFile: didn't find 
http://ftp.nl.debian.org/debian/dists/wheezy/main/installer-amd64/directory.yast:
 HTTP Error 404: Not Found
[Wed, 23 Apr 2014 16:15:52 virt-install 22583] DEBUG (ImageFetcher:83) Fetching 
URI: 
http://ftp.nl.debian.org/debian/dists/wheezy/main/installer-amd64/current/images/MANIFEST
[Wed, 23 Apr 2014 16:15:52 virt-install 22583] DEBUG (ImageFetcher:94) Saved 
file to /var/tmp/virtinst-MANIFEST.QJUohd
[Wed, 23 Apr 2014 16:15:52 virt-install 22583] DEBUG (OSDistro:938) Detected a 
Debian distro
[Wed, 23 Apr 2014 16:15:52 virt-install 22583] DEBUG (virt-install:623) 
Guest.has_install_phase: True

Starting install...
[Wed, 23 Apr 2014 16:15:52 virt-install 22583] DEBUG (Installer:182) 
scratchdir=/home/saa/.virtinst/boot
[Wed, 23 Apr 2014 16:15:52 virt-install 22583] DEBUG (OSDistro:65) Attempting 
to detect distro:
[Wed, 23 Apr 2014 16:15:52 virt-install 22583] DEBUG (ImageFetcher:124) HTTP 
hasFile: didn't find 
http://ftp.nl.debian.org/debian/dists/wheezy/main/installer-amd64/.treeinfo: 
HTTP Error 404: Not Found
[Wed, 23 Apr 2014 16:15:52 virt-install 22583] DEBUG (ImageFetcher:124) HTTP 
hasFile: didn't find 
http://ftp.nl.debian.org/debian/dists/wheezy/main/installer-amd64/Fedora: HTTP 
Error 404: Not Found
[Wed, 23 Apr 2014 16:15:52 virt-install 22583] DEBUG (ImageFetcher:124) HTTP 
hasFile: didn't find 

Bug#687280: htop: columns not lining up when using pid's 99999

2012-09-13 Thread Sammy Atmadja
Hi Eugene,

I tried on a Debian Wheezy machine, and the kernel does allow higher values, up 
to 2^22 (around 4 million). The htop from wheezy aligns the PID column nicely 
when reaching 100.000 . Although when you enable other columns that are based 
on the PID, like PGRP (process group id) and SESN (session id) these do not 
line up. So the problem seems to be partially fixed.

Sammy

- Original Message -
 Hello Sammy,
 
 Thank you for the report.
 
 On 2012-09-11 14:16, Sammy Atmadja wrote:
  When setting /proc/sys/kernel/pid_max to a larger value than
  default
  ( 9) the columns in the output of htop no longer line up
  making
  it hard to read.
 
 It seems like upcoming Debian wheezy kernel doesn't allow setting
 more
 than 16-bit values, thus I cannot test this.
 
 Nevertheless, could you try htop from Debian wheezy (1.0.1)? One user
 said in the bug tracker that this PID problem is fixed in 1.0.
 
 --
 Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
 C++ GNU/Linux userspace developer, Debian Developer
 


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#687280: htop: columns not lining up when using pid's 99999

2012-09-13 Thread Sammy Atmadja
Hi Eugene,

I saw that the upstream bugtracker on sourceforge already had a bug filed 
regarding this issue (Columns are on the wrong position #2 - ID: 3407625) . 
Anyway, based on your hint that this was already fixed for the PID column in 
the latest version, I cooked up this patch below. It seems to fix the issue for 
me.

Sammy

- START PATCH -
diff --git a/Process.c b/Process.c
index 68edd70..421931a 100644
--- a/Process.c
+++ b/Process.c
@@ -203,7 +203,7 @@ const char *Process_fieldNames[] = {
 };
 
 const char *Process_fieldTitles[] = {
-   , PID , Command , S ,PPID ,  PGRP ,  SESN ,
+   , PID , Command , S ,PPID ,PGRP ,SESN ,
  TTY ,   TPGID , - , - , - , - , - ,
 UTIME+  ,  STIME+  ,  CUTIME+ ,  CSTIME+ , PRI ,  NI , - ,
START , - , - , - , - , - , - ,
@@ -239,17 +239,21 @@ void Process_getMaxPid() {
fscanf(file, %32d, maxPid);
fclose(file);
if (maxPid  9) {
-  Process_fieldTitles[PID] =   PID ;
-  Process_fieldTitles[PPID] = PPID ;
-  Process_fieldTitles[TPGID] =   TPGID ;
-  Process_fieldTitles[TGID] = TGID ;
+  Process_fieldTitles[PID] = PID ;
+  Process_fieldTitles[PPID] =   PPID ;
+  Process_fieldTitles[TPGID] = TPGID ;
+  Process_fieldTitles[TGID] =   TGID ;
+  Process_fieldTitles[PGRP] =   PGRP ;
+  Process_fieldTitles[SESSION] =SESN ;
   Process_pidFormat = %7u ;
   Process_tpgidFormat = %7d ;
} else {
-  Process_fieldTitles[PID] = PID ;
-  Process_fieldTitles[PPID] =   PPID ;
-  Process_fieldTitles[TPGID] = TPGID ;
-  Process_fieldTitles[TGID] =   TGID ;
+  Process_fieldTitles[PID] =   PID ;
+  Process_fieldTitles[PPID] = PPID ;
+  Process_fieldTitles[TPGID] =   TPGID ;
+  Process_fieldTitles[TGID] = TGID ;
+  Process_fieldTitles[PGRP] = PGRP ;
+  Process_fieldTitles[SESSION] =  SESN ;
   Process_pidFormat = %5u ;
   Process_tpgidFormat = %5d ;
}
@@ -375,8 +379,8 @@ static void Process_writeField(Process* this, RichString* 
str, ProcessField fiel
switch (field) {
case PID: snprintf(buffer, n, Process_pidFormat, this-pid); break;
case PPID: snprintf(buffer, n, Process_pidFormat, this-ppid); break;
-   case PGRP: snprintf(buffer, n, %5u , this-pgrp); break;
-   case SESSION: snprintf(buffer, n, %5u , this-session); break;
+   case PGRP: snprintf(buffer, n, Process_pidFormat, this-pgrp); break;
+   case SESSION: snprintf(buffer, n, Process_pidFormat, this-session); break;
case TTY_NR: snprintf(buffer, n, %5u , this-tty_nr); break;
case TGID: snprintf(buffer, n, Process_pidFormat, this-tgid); break;
case TPGID: snprintf(buffer, n, Process_tpgidFormat, this-tpgid); break;
- END PATCH -


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#687280: htop: columns not lining up when using pid's 99999

2012-09-11 Thread Sammy Atmadja
Package: htop
Version: 0.8.3-1
Severity: minor
Tags: upstream


When setting /proc/sys/kernel/pid_max to a larger value than default
( 9) the columns in the output of htop no longer line up making
it hard to read.

Steps to reproduce:
- (as root) echo 400  /proc/sys/kernel/pid_max
- start lot's of processes and wait until the process id's reach  9
- view output of htop

-- System Information:
Debian Release: 6.0.5
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-0.bpo.3-amd64 (SMP w/24 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages htop depends on:
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib
ii  libncurses5   5.7+20100313-5 shared libraries for terminal hand

htop recommends no packages.

Versions of packages htop suggests:
pn  ltracenone (no description available)
ii  strace4.5.20-2   A system call tracer

-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#672396: nvidia-glx: xorg fails to start and segfaults with kernel 3.2.0-0.bpo.2-amd64

2012-06-30 Thread Sammy Atmadja
I just installed nvidia-glx 295.59-1~bpo60+1 from squeeze-backports
with the 3.2 linux kernel, also from backports, and everything seems
to be working fine now. Feel free to close this bugreport.

Thanks,
Sammy

--
winter mountain slopes
fresh snow gliding under me
downhill I descend



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#672396: nvidia-glx: xorg fails to start and segfaults with kernel 3.2.0-0.bpo.2-amd64

2012-06-04 Thread Sammy Atmadja
On Sun, Jun 03, 2012 at 10:01:00PM +0200, Andreas Beckmann wrote:
 On 2012-05-10 20:31, Sammy Atmadja wrote:
  Package: nvidia-glx
  Version: 280.13.really.275.36-1~bpo60+2
 
 Have you tried the driver from wheezy (295.53)?
 And eventually experimental (302.11)?

No, not yet. I'm trying to keep this machine sort of stable, not mess
too much with the package versions, so squeeze-backports is about as
adventerous as i'm willing to go.

 Could be specific to the particular GPU model in the machine.

[1309951.424] (II) NVIDIA(0): NVIDIA GPU GeForce 6600 (NV43) at PCI:1:0:0 
(GPU-0)
[1309951.424] (--) NVIDIA(0): Memory: 262144 kBytes
[1309951.424] (--) NVIDIA(0): VideoBIOS: 05.43.02.72.00
[1309951.424] (II) NVIDIA(0): Detected PCI Express Link width: 16X

Seems to be one of the oldest model still supposed to be supported by
the driver. I'll try if i can get my hands on a newer GPU.

Sammy

--
winter mountain slopes
fresh snow gliding under me
downhill I descend



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#672396: nvidia-glx: xorg fails to start and segfaults with kernel 3.2.0-0.bpo.2-amd64

2012-05-10 Thread Sammy Atmadja
 files for Linux 3.2.0-0.bpo
ii  l 3.2+44~bpo60+1 Header files for Linux amd64 confi
ii  n 280.13.really.275.36-1~bpo60+2 NVIDIA metapackage
ii  n 2011+1~bpo60+1 NVIDIA binary kernel module suppor
ii  n 280.13.really.275.36-1~bpo60+2 NVIDIA binary kernel module DKMS s
pn  n none (no description available)
ii  n 290.10-1~bpo60+1   Tool for configuring the NVIDIA gr
ii  n 2011+1~bpo60+1 NVIDIA binary graphics driver supp
ii  n 195.36.31-1X configuration tool for non-free 
ii  x 1:7.6+8~bpo60+1X.Org X server
ii  x 2:1.10.4-1~bpo60+1 Xorg X server - core server
ii  x 1:0.0.16+git20110411+8378443-1~bpo60+1 X.Org X server -- Nouveau display 
ii  x 280.13.really.275.36-1~bpo60+2 NVIDIA binary Xorg driver

-- no debconf information

Xorg fails to start after upgrading to the 3.2.0 linux-kernel version
from squeeze-backports (linux-image-3.2.0-0.bpo.2-amd64
3.2.15-1~bpo60+1). I had no problems using the stable kernel
(linux-image-2.6.32-5-amd64 2.6.32-41squeeze2). I tried a different
system (An Asrock ION 330 with atom 330 cpu and Geforce 9400M G GPU)
with nvidia-glx, xorg and linux-image-amd64 from squeeze-backports and
had no problems.

I'm not shure if the bug is caused by
/usr/lib/xorg/modules/drivers/nvidia_drv.so or /usr/bin/X . But i
tried different systems with these software versions without
problems. This specific system is the only one misbehaving.

Sammy

--
winter mountain slopes
fresh snow gliding under me
downhill I descend



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#590653: lo: Disabled Privacy Extensions in kernel log every couple of seconds

2010-07-28 Thread Sammy Atmadja
Package: linux-image-2.6-686
Version: 2.6.32+27
Severity: minor

The system is a KVM guest (host is squeeze, qemu-kvm version 0.12.4+dfsg-1, 
kernel 2.6.32-5-amd64). /var/log/syslog looks like this:

Jul 28 08:03:35 brakiri kernel: [606636.002265] lo: Disabled Privacy Extensions
Jul 28 08:03:35 brakiri kernel: [606636.298208] lo: Disabled Privacy Extensions
Jul 28 08:03:37 brakiri kernel: [606637.828089] lo: Disabled Privacy Extensions
Jul 28 08:03:37 brakiri kernel: [606638.121206] lo: Disabled Privacy Extensions
Jul 28 08:03:39 brakiri kernel: [606639.757784] lo: Disabled Privacy Extensions
Jul 28 08:03:39 brakiri kernel: [606640.069208] lo: Disabled Privacy Extensions
Jul 28 08:04:07 brakiri kernel: [606668.083251] lo: Disabled Privacy Extensions
Jul 28 08:04:08 brakiri kernel: [606668.377440] lo: Disabled Privacy Extensions
Jul 28 08:04:27 brakiri kernel: [606687.857553] lo: Disabled Privacy Extensions
Jul 28 08:04:27 brakiri kernel: [606688.153738] lo: Disabled Privacy Extensions
Jul 28 08:04:56 brakiri kernel: [606717.187811] lo: Disabled Privacy Extensions
Jul 28 08:04:57 brakiri kernel: [606717.486261] lo: Disabled Privacy Extensions

How do I get rid of these messages? Other than this, the system seems to be 
running fine.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages linux-image-2.6-686 depends on:
ii  linux-image-2.6.32-5-686  2.6.32-15  Linux 2.6.32 for modern PCs

linux-image-2.6-686 recommends no packages.

linux-image-2.6-686 suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#487635: Performance degradation over remote ssh X11 forwarded display

2008-06-23 Thread Sammy Atmadja
Package: libx11-6
Version: 2:1.1.4-2
Severity: important

Since upgrading libx11-6 in lenny from 1.0.3 to 1.1.4 we're seeing
severe performance degradation when using applications over a remote
ssh X11 forwarding tunnel. The applications we've seen this happen to
are: netbeans 6.0, icedove, firefox 3.0 . When used on a local X11
display these applications perform normally, but when used remotely
they become extremely sluggish making them practically unusable. I do
not observe any excessive cpu or network usage though. Reverting the
package version back to 1.0.3 (or using LD_PRELOAD to force using the
1.0.3 version of libX11.so.6.2.0) is usable as a temporary workaround.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-1-686 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libx11-6 depends on:
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libx11-data   2:1.1.4-2  X11 client-side library
ii  libxau6   1:1.0.3-3  X11 authorisation library
ii  libxdmcp6 1:1.0.2-3  X11 Display Manager Control Protoc
ii  x11-common1:7.3+10   X Window System (X.Org) infrastruc

libx11-6 recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#435929: Additional info

2008-04-06 Thread Sammy Spets
I've tried to install pdns-server package on ubuntu and get the same
lockup. You'll find bug post information at:

https://bugs.launchpad.net/ubuntu/+source/pdns/+bug/195509

The latest we've found there is:


A bit of further debugging using -x shows it blocking
in /usr/share/debconf/confmodule.

+ . /usr/share/debconf/confmodule
++ '[' '!' 1 ']'
++ '[' -z 1 ']'
+ db_x_loadtemplatefile /var/lib/dpkg/info/ucf.templates ucf
+ _db_cmd 'X_LOADTEMPLATEFILE /var/lib/dpkg/info/ucf.templates' ucf
+ IFS=' '
+ printf '%s\n' 'X_LOADTEMPLATEFILE /var/lib/dpkg/info/ucf.templates
ucf'
+ IFS='
'
+ read -r _db_internal_line

Hope this helps a little.

-- 
Sammy Spets




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#265595: Blow your load in Linday

2008-03-24 Thread sammy Kjellander

Have all the ladies drooling to sleep with you with your new pecker

http://www.Dikipens.com/
Blow your load in Linday



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#293277: Non-Prescriptive Natural Solution

2008-03-23 Thread sammy McGath
Leave her wanting and horny for more of you.

http://www.woepphgl.com/
Non-Prescriptive Natural Solution



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#123436: Increaes your size and stamina today.

2008-03-22 Thread sammy Puri

Sick of having premature ejaculation or a small erection? Here’s the solution.

http://www.jessialbacent.com/
Increaes your size and stamina today.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#127060: AutoCAD OEM version

2008-03-06 Thread Sammy Hart

New Features:

http://{urloem2}

System Requirements

• Intel® Pentium® 4 processor, 2.2 GHz Recommended
• Microsoft® Windows Vista™, Windows® XP Home and Professional (SP2), Windows® 
2000 (SP4)
• 512 MB RAM
• 1500 MB free disk space for installation
• 1024x768 VGA with True Color





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#121621: One minute and you can start new business...

2007-12-18 Thread Sammy Doyle
We offer a great opportunity for german peoples for an educated, self motivated 
individual to gain experience in a fast growing company! PC Flexibility and a 
sense of humor are a necessity for this position, offer and small home office 
environment.
Demands: Receives and processes costomers orders Processes data entry of all 
new hires and clients in company database Orders, processes, and distributes 
entry along with product review tests! Salary : 9600 EUR/month
Please Apply: [EMAIL PROTECTED]




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#415714: postfix: smtpd exits with status 127

2007-03-21 Thread Sammy Atmadja
Package: postfix
Version: 2.3.8-2
Severity: grave

Postfix refuses to handle incoming smtp connections after this
morning's upgrade. Reverting to the previous version's package fixes
it for now.

Mar 21 13:52:43 blackbeard postfix/master[11123]: warning: process 
/usr/lib/postfix/smtpd pid 16827 exit status 127
Mar 21 13:52:43 blackbeard postfix/master[11123]: warning: 
/usr/lib/postfix/smtpd: bad command startup -- throttling


-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-k7
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages postfix depends on:
ii  adduser   3.102  Add and remove users and groups
ii  debconf [debconf-2.0] 1.5.11 Debian configuration management sy
ii  dpkg  1.13.25package maintenance system for Deb
ii  libc6 2.3.6.ds1-13   GNU C Library: Shared libraries
ii  libdb4.3  4.3.29-8   Berkeley v4.3 Database Libraries [
ii  libsasl2-22.1.22.dfsg1-8 Authentication abstraction library
ii  libssl0.9.8   0.9.8c-4   SSL shared libraries
ii  lsb-base  3.1-23.1   Linux Standard Base 3.1 init scrip
ii  netbase   4.29   Basic TCP/IP networking system
ii  ssl-cert  1.0.14 Simple debconf wrapper for openssl

Versions of packages postfix recommends:
ii  emacs21 [mail-re 21.4a+1-3   The GNU Emacs editor
ii  icedove [mail-re 1.5.0.9.dfsg1-1 free/unbranded thunderbird mail cl
ii  kmail [mail-read 4:3.5.5.dfsg.1-6KDE Email client
ii  mailx [mail-read 1:8.1.2-0.20050715cvs-1 A simple mail user agent
ii  mutt [mail-reade 1.5.13-1.1  text-based mailreader supporting M

-- debconf information:
  postfix/master_upgrade_warning:
  postfix/db_upgrade_warning: true
* postfix/mailname: moria.local
  postfix/tlsmgr_upgrade_warning:
  postfix/dynamicmaps_upgrade_warning:
  postfix/recipient_delim: +
* postfix/main_mailer_type: Internet Site
  postfix/transport_map_warning:
  postfix/relayhost:
  postfix/procmail: false
  postfix/bad_recipient_delimiter:
  postfix/chattr: false
  postfix/root_address: NONE
  postfix/rfc1035_violation: false
  postfix/mydomain_warning:
  postfix/mynetworks: 127.0.0.0/8
  postfix/destinations: moria.local, localhost.local, , localhost
  postfix/nqmgr_upgrade_warning:
  postfix/not_configured:
  postfix/mailbox_limit: 0
  postfix/protocols: ipv4


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#159802: borrower hedonism

2006-12-03 Thread Sammy

Reports indicate that a Sunni militia sniper brigade is making use of
the American techniques. State what I wanted to do and take no prisoners
in implementing the change. Someone needs to build the space shuttle
equivalent of the wooden horse of Troy and pack the scoundrels in there
with a one way ticket to a lunar landing.
And at the same time, they reduce the integration-test aspects of TDD.

'''

*MAKU* IMMENSE COVERAGE *MAKU*

Trade Date:   Monday, December 4, 2006
Company Name: MAKEUP LIMITED (OTC BB:MAKU.OB)
Symbol:   MAKU
Last Trade:   $0.61
MAKU Target:  $2

Why get in MAKU? Don't if profit is not in your vocabulary.

JUST WATCH MAKU TRADE NEXT MONDAY, DECEMBER 4TH!

'''

Jane's rule for putting silverware into a dishwasher is to put all the
forks in one sub-bin, all the spoons in a different sub-bin, all the
steak knives in one sub-bin, and so on. By driving coding with
customer-facing tests, we're more likely to deliver what the customer
wanted. Or taken from the sink where it's been soaking. I think the kind
of apps that could be commonplace with Seaside are totally not doable
with any other web technology. Collaborating helps communication, so
testers should get together with programmers and with customers from the
start of a project, as well as pairing with each other. We know that
people, not tools or methodologies, are what makes projects succeed. If
you change an object's API, a mock object's API may not change, making
your tests out-of-date with respect to your non-test code.
I prefer to have failing tests tell me when behavior is changing.
This depends on whether you are using a Mock-generating framework, or
not, and how your mock object is implemented or how the Mock-generating
framework is implemented.
I think for many people new to TDD, mocks are their new hammer, and
every problem is treated like a nail, even when a saw or a screwdriver
would be more appropriate for the situation. Examples: simulating errors
in writing a file; simulating connections with a remote server;
simulating errors from remote server. Exploratory testing is inherently
agile so we work at getting better at that.
The speaker's example was the process of swimming.
They try to keep their head above the water, and their feet end up deep
under the water. They try to keep their head above the water, and their
feet end up deep under the water.
Unloading the dishwasher is much more faster than it would be if I had
to take individual forks out of random sub-bins.
For example, communication is essential, and by collaborating with our
customers up front to write test cases, we can improve communication.
I think the Agile Manifesto works from a testing point of view as well
as from a coding point of view.
Such leadership must create enemies.
The benefit comes when it is time to unload the dishwasher, putting the
clean silverware into the drawer. They try to keep their head above the
water, and their feet end up deep under the water. I consider such
overtime to be management failure. Often with libraries that were not
designed with TDD in mind, such as the TWAIN libraries used for
controlling scanners and implementing scanner-drivers. In the history of
software development, it's been fairly common for a horrible product to
be declared a success and shipped.
State what I wanted to do and take no prisoners in implementing the
change. Reports indicate that a Sunni militia sniper brigade is making
use of the American techniques. They try to keep their head above the
water, and their feet end up deep under the water.
Retrospectives are the single most important practice I can think of for
any team, because you can't improve without identifying and focusing on
what you need to improve.
I've heard people come up with some great one-liners but then I can't
remember them.
The fact that an agile process is built around an understanding that it
takes people to make something work and that we're not automatons is a
great enabler for improvements.
The speaker's example was the process of swimming. I think the kind of
apps that could be commonplace with Seaside are totally not doable with
any other web technology.
For example, communication is essential, and by collaborating with our
customers up front to write test cases, we can improve communication.
They make your tests larger and more complicated and less readable.
In the history of software development, it's been fairly common for a
horrible product to be declared a success and shipped. The speaker's
example was the process of swimming. I think the kind of apps that could
be commonplace with Seaside are totally not doable with any other web
technology.
Word-processing, image processing. i've got one with the lot .
This depends on whether you are using a Mock-generating framework, or
not, and how your mock object is implemented or how the Mock-generating
framework is implemented.
Their heads are in the water, not above it, sipping air now and then
from the side, and their feet 

Bug#394183: Netboot installer kernel modules missing/mismatch

2006-10-20 Thread Sammy Atmadja
Package: installation-reports

Boot method: netboot using PXE
Image version: 
ftp://ftp.nl.debian.org/debian/dists/etch/main/installer-i386/current/images/netboot/netboot.tar.gz
 dated aug 07 2006
Date: oct 20 2006

Machine: HP dx5150
Processor: sempron
Memory: 256 MB
Partitions: n/a

Output of lspci and lspci -n:

Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot worked:[O]
Configure network HW:   [O]
Config network: [O]
Detect CD:  [ ]
Load installer modules: [E]
Detect hard drives: [ ]
Partition hard drives:  [ ]
Create file systems:[ ]
Mount partitions:   [ ]
Install base system:[ ]
Install boot loader:[ ]
Reboot: [ ]

Comments/Problems:

The installer couldn't find matching kernel modules from the archive
(I tried several US and NL mirrors) to complete the installation. I
tried the sarge netboot, but it is to old to recognize the hardware
(SATA disks). AMD64 netboot has the same problem. This setup (pxe
netboot install) has worked in the past, so has anything changed
recently? Maybe more care should be taken to ensure the current
netboot image matches the available kernel modules?


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#178077: chance of a lifetime

2006-07-01 Thread Sammy
Hi,
Hope I am not writing to wrong address. I am nice, pretty lookbing
girl. I am planning on visiting your town this month. Can 
we meet each other in person? Message me back at [EMAIL PROTECTED]




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#375496: Taking over maintainership of Drupal packages

2006-06-27 Thread Sammy Spets
I'm also interested in taking up the maintainership of drupal packages. 
Is it still up for grabs?

Currently am co-maintainer of Drupal E-commerce.

Cheers,

-- 
Sammy Spets
Synerger Pty Ltd
http://www.synerger.com/



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#367359: php4: General cookie overrides more specific cookie (path) PHP#32802 still happening

2006-05-15 Thread Sammy Spets
Package: php4
Version: 4:4.3.10-16
Severity: important


PHP Bug #32802 reported more specific cookie domains are being clobbered
by less specific ones for the same cookie name. In other words, cookies
with the same name are being used for PHP sessions in the wrong order.
I.e example.com is given preference over foo.example.com when viewing
foo.example.com. The bug report claims the fix was applied to PHP as
of 24/May/2005.

The bug report:
http://bugs.php.net/bug.php?id=32802

I'm still experiencing this bug, as are many other people. See
http://drupal.org/node/60584

Some additional settings on my systems:
  magic_quotes_gpc: off
  register_globals: off
  magic_quotes_runtime: off

I have confirmed the sample fix (in PHP) supplied in the PHP bug report
fixes the problem in my case.

Cheers,

--
Sammy Spets
Synerger Pty Ltd
http://www.synerger.com

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-3-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages php4 depends on:
ii  libapache-mod-php4   4:4.3.10-16 server-side, HTML-embedded scripti
ii  php4-common  4:4.3.10-16 Common files for packages built fr

-- debconf information:
  php4/run_apache_sslconfig: true
  php4/run_apacheconfig: true
  php4/update_apache_php_ini: true


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#53121: pat Your Quote Is Pending Verification

2005-12-10 Thread Sammy
pat reuter,

We are proud to offer you 526K at a fixed 2.21

jukenyte.com

N.o. - j u k e n y t e . c o m / patreuter

Regards,
Sammy



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#135972: Hi! It's Sammy

2005-08-24 Thread Sammy
Hello, chief :)
It's Sammy, remember me?
My photo here http://pidekijadibuma.com/view.cgi?s=allm=IGEACH.iPdR,gfibjW,VSd


--
Best regards, Sammy



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#156532: give us a call today

2005-08-14 Thread Sammy

Hello Ashley ,

Would you like at least $1500.00 to $3500.00 per day just for returning phone 
calls?  
I do! If you have a telephone and can return calls you are fully qualified for 
this program.


Give Us A Call 800-671-9012



morton consequent mission ugh woodruff rustle codebreak ambush simplify 
continental rodgers imperate cash conscription mulct pallet remnant nave accrue 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#141576: Hey man, stop throwing away your money

2005-07-03 Thread Sammy

No pills, no pumps - Its the Patch
http://www.siratu.com/ss/





A facility for quotation covers the absence of original thought.   
A hedge between keeps friendship green.   
My salad days,When I was green in judgment. 
Springtime is the land awakening. The March winds are the morning yawn. 
A well-tied tie is the first serious step in life.   





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Bug#59518: Online computer solutions.

2005-06-10 Thread Sammy

Offering bargains up to 50% off software.
http://hoeeuy.1q5ym0jcgt18ykj.corkboardbb.com




Never lose hope.  
You must be the change you want to see in the world. 





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#55364: Quality software for less.

2005-06-04 Thread Sammy

Software suites.
http://rvowxm.9gd6cq92o19yoar.sheavemanjj.com




My work is a game, a very serious game.
A hobby a day keeps the doldrums away. 





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#51909: Now you can learn the most pleasant moments of sex!

2005-05-30 Thread Sammy

Pharmaceutical services for the modern men
http://banquet.medkit.info/?associatedxtvuyshapelessnesszctMarie


A superstition is a premature explanation that overstays its time.   
Fiction is obliged to stick to possibilities. Truth isn't.
I come from a family where gravy is considered a beverage.  
Nothing spoils a confession like repentance.   





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#294524: offlineimap: locks up during sync on same mailbox every time

2005-02-10 Thread Sammy Spets
Hi John,

Thanks for the swift response.

On 10-Feb-05 08:23, John Goerzen wrote:
 And here we see that no reply was ever received.  I'd try running
 OfflineIMAP with -1 to start with.  If that works, try increasing
 concurrency by 1 each time and see if you can find a point where it
 stops working.  Once you do, you can grab a debug log with -d imap.
 Maybe there is something weird going on.

I ran strace using -1 previously. I ran 'offlineimap -1 -d imap' and it
freezes here:

Syncing Underwater.Announcements: IMAP - Maildir
DEBUG[imap]:   56:14.47  BKPF44 SELECT Underwater.Announcements

The full imap debug output is available at www.synerger.com/oimap.debug

Server is dovecot. Is there another way I can slow down offlineimap so I 
can test whether dovecot is dying under the barrage of commands?

Oh! Another user of the same server that uses offlineimap does not have
any troubles with it.

-- 
Sammy Spets
Synerger Pty Ltd
http://www.synerger.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#294524: offlineimap: locks up during sync on same mailbox every time

2005-02-10 Thread Sammy Spets
Hi Steve,

I've seen that slowdown myself on big mails. This problem doesn't stem 
from a mail though as the last command sent to the server is SELECT.

Cheers,

-- 
Sammy Spets
Synerger Pty Ltd
http://www.synerger.com/

On 10-Feb-05 15:57, Steve McIntyre wrote:
 On Fri, Feb 11, 2005 at 02:30:37AM +1100, Sammy Spets wrote:
 Hi John,
 
 Thanks for the swift response.
 
 On 10-Feb-05 08:23, John Goerzen wrote:
  And here we see that no reply was ever received.  I'd try running
  OfflineIMAP with -1 to start with.  If that works, try increasing
  concurrency by 1 each time and see if you can find a point where it
  stops working.  Once you do, you can grab a debug log with -d imap.
  Maybe there is something weird going on.
 
 I ran strace using -1 previously. I ran 'offlineimap -1 -d imap' and it
 freezes here:
 
 Syncing Underwater.Announcements: IMAP - Maildir
 DEBUG[imap]:   56:14.47  BKPF44 SELECT Underwater.Announcements
 
 The full imap debug output is available at www.synerger.com/oimap.debug
 
 Server is dovecot. Is there another way I can slow down offlineimap so I 
 can test whether dovecot is dying under the barrage of commands?
 
 Oh! Another user of the same server that uses offlineimap does not have
 any troubles with it.
 
 What I see occasionally with dovecot and offlineimap is a significant
 slowdown on large individual pieces of mail. If I leave things running
 for a few minutes it will recover and continue eventually. Can you get
 debug from the server to see how big that particular mail is?
 
 -- 
 Steve McIntyre, Cambridge, UK.[EMAIL 
 PROTECTED]
 Support the Campaign for Audiovisual Free Expression: http://www.eff.org/cafe/





Bug#294524: offlineimap: locks up during sync on same mailbox every time

2005-02-10 Thread Sammy Spets
On 10-Feb-05 09:58, John Goerzen wrote:
 Well, at least it's freezing at the same place :-)

hehe. Actually offlineimap has locked up in various places. During LOGIN
and while it's trying to set flags.

 Not built-in, but you can telnet to your server and issue commands
 manually  something like this should do it:
 
 If it still hangs on the SELECT, then you know for sure that the problem
 is in dovecot.  Otherwise, our journey continues...

I've telnetted into the server and issued the commands. The server 
responded with OK for everything. There is another twist to the story.

Having a look through the documentation I noticed I wasn't using SSL for 
offlineimap. I thought I have been. Anyway, I added 'ssl = yes' to the 
config file and it all worked! It downloaded all the mail that was in 
that mailbox (because I deleted it all during debugging).

Now the twist. I disabled SSL again and the problem still remains. There 
are no new mails in that mailbox.

Something is a bit fishy!

-- 
Sammy Spets
Synerger Pty Ltd
http://www.synerger.com/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#294524: offlineimap: locks up during sync on same mailbox every time

2005-02-09 Thread Sammy Spets
Package: offlineimap
Version: 4.0.8
Severity: important


From: [EMAIL PROTECTED]
Subject: offlineimap: locks up during sync on same mailbox every time
Package: offlineimap
Version: 4.0.8
Severity: important

Hi John,

First of all, great software. :)

The software locks up when syncing Underwater.Announcements mailbox. I've
tried 4.0.8 and 4.0.7 and both do the same thing. I've tried accessing the
IMAP server using other clients and they have no difficulties.

My guess is a race condition when signals are being masked out then
unmasked again.

I've used strace on it and here is the relevant section. The full trace
file is available:

http://www.synerger.com/oimap.trace

To make things quicker PID 4735 is the one dealing with the mailbox in question.

4735  --- SIGSTOP (Stopped (signal)) @ 0 (0) ---
4718  kill(4720, SIGRTMIN unfinished ...
4735  getpid( unfinished ...
4720  --- SIGRTMIN (Unknown signal 32) @ 0 (0) ---
4735  ... getpid resumed )= 4735
4720  ... rt_sigsuspend resumed ) = -1 EINTR (Interrupted system call)
4735  rt_sigprocmask(SIG_SETMASK, ~[KILL STOP RT_1], NULL, 8) = 0
4735  sched_setscheduler(4735, SCHED_OTHER, { 0 }) = 0
4735  rt_sigprocmask(SIG_SETMASK, NULL, ~[KILL STOP RT_1], 8) = 0
4735  rt_sigsuspend(~[KILL STOP RTMIN RT_1] unfinished ...
4720  sigreturn()   = ? (mask now ~[KILL STOP])
4720  rt_sigprocmask(SIG_SETMASK, ~[KILL STOP RT_1], NULL, 8) = 0
4720  kill(4735, SIGRTMIN unfinished ...
4735  --- SIGRTMIN (Unknown signal 32) @ 0 (0) ---
4735  ... rt_sigsuspend resumed ) = -1 EINTR (Interrupted system call)
4735  sigreturn()   = ? (mask now ~[KILL STOP])
4735  write(1, Syncing Underwater.Announcements..., 50) = 50
4735  open(/home/sammys/.Mail/Underwater.Announcements/new, 
O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY) = 7
4735  fstat64(7, {st_mode=S_IFDIR|S_ISGID|0700, st_size=4096, ...}) = 0
4735  fcntl64(7, F_SETFD, FD_CLOEXEC)   = 0
4735  getdents64(7, /* 2 entries */, 4096) = 48
4735  getdents64(7, /* 0 entries */, 4096) = 0
4735  close(7)  = 0
4735  open(/home/sammys/.Mail/Underwater.Announcements/cur, 
O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY) = 7
4735  fstat64(7, {st_mode=S_IFDIR|S_ISGID|0700, st_size=4096, ...}) = 0
4735  fcntl64(7, F_SETFD, FD_CLOEXEC)   = 0
4735  getdents64(7, /* 2 entries */, 4096) = 48
4735  getdents64(7, /* 0 entries */, 4096) = 0
4735  close(7)  = 0
4735  
stat64(/home/sammys/.offlineimap/Account-Taco/LocalStatus/Underwater.Announcements,
 0xbf1fe764) = -1 ENOENT (No such file or directory)
4735  
open(/home/sammys/.offlineimap/Repository-TacoLocal/FolderValidity/Underwater.Announcements.tmp,
 O_WRONLY|O_CREAT|O_TRUNC|O_LARGEFILE, 0666) = 7
4735  fstat64(7, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
4735  fstat64(7, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0
4735  old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 
0) = 0x40486000
4735  write(7, 42\n, 3)   = 3
4735  close(7)  = 0
4735  munmap(0x40486000, 4096)  = 0
4735  
rename(/home/sammys/.offlineimap/Repository-TacoLocal/FolderValidity/Underwater.Announcements.tmp,
 
/home/sammys/.offlineimap/Repository-TacoLocal/FolderValidity/Underwater.Announcements)
 = 0
4735  gettimeofday({1108011668, 55266}, NULL) = 0
4735  send(6, GAJI44 SELECT Underwater.Announc..., 40, 0) = 40
4735  recv(6,  unfinished ...
4720  ... kill resumed )  = 0
4720  select(0, NULL, NULL, NULL, {0, 0}) = 0 (Timeout)
4720  rt_sigprocmask(SIG_SETMASK, NULL, ~[KILL STOP RT_1], 8) = 0
4720  rt_sigsuspend(~[KILL STOP RTMIN RT_1] unfinished ...

Then no mention of pid 4735 until:

4717  --- SIGINT (Interrupt) @ 0 (0) ---
4717  getpid()  = 4717
...
4718  kill(4735, SIGRT_1 unfinished ...
4735  ... recv resumed 0x820ea34, 8192, 0) = ? ERESTARTSYS (To be restarted)
4735  --- SIGRT_1 (Unknown signal 33) @ 0 (0) ---
4735  exit_group(0) = ?

Cheers,

Sammy Spets
Synerger Pty Ltd
http://www.synerger.com

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.27
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages offlineimap depends on:
ii  python2.3 2.3.4-19   An interactive high-level object-o

-- no debconf information

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.27
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages offlineimap depends on:
ii  python2.3 2.3.4-19   An interactive high-level object-o

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#118337: Package Status, Shipment Number : 97C7iy3H

2005-01-19 Thread Sammy O. Mertens
Information Here:

cov2pa.com/track.php?cg=1=c

Cathy hasn't practiced reading yet.