diff options
| author | Peter Jones <pjones@redhat.com> | 2007-01-19 18:46:04 +0000 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2007-01-19 18:46:04 +0000 |
| commit | dc27942e1593dc535db6fbc78ee685c75142dc7d (patch) | |
| tree | 98c58001c32dd014b42ddc11ee912d16d286f1cd | |
| parent | 076389b446beab5eb037c652f280adf00e10d5a9 (diff) | |
- Fix typoanaconda-11.1.2.31-1
- Bump version.
| -rw-r--r-- | ChangeLog | 8 | ||||
| -rw-r--r-- | anaconda.spec | 6 | ||||
| -rw-r--r-- | iscsi.py | 2 |
3 files changed, 14 insertions, 2 deletions
@@ -4,6 +4,14 @@ 2007-01-18 Peter Jones <pjones@redhat.com> + * iscsi.py (iscsi.shutdown): fix typo. + +2007-01-18 Peter Jones <pjones@redhat.com> + + * anaconda.spec: Bump version. + +2007-01-18 Peter Jones <pjones@redhat.com> + * iscsi.py (iscsi.shutdown): "ps -C foo" wants process name without a path (#223257) diff --git a/anaconda.spec b/anaconda.spec index 00e50a16c..52157ab92 100644 --- a/anaconda.spec +++ b/anaconda.spec @@ -1,5 +1,5 @@ Name: anaconda -Version: 11.1.2.30 +Version: 11.1.2.31 Release: 1 License: GPL Summary: Graphical system installer @@ -103,6 +103,10 @@ rm -rf $RPM_BUILD_ROOT /sbin/chkconfig --del reconfig >/dev/null 2>&1 || : %changelog +* Fri Jan 19 2007 Peter Jones <pjones@redhat.com> - 11.1.2.31-1 +- Fix typo in yesterday's iscsi fix + Resolves: #223257 + * Thu Jan 18 2007 Peter Jones <pjones@redhat.com> - 11.1.2.30-1 - Fix iscsi shutdown's "ps" call Resolves: #223257 @@ -171,7 +171,7 @@ class iscsi(object): t.logout() # XXX use iscsiadm shutdown when it's available. - argv = [ "--no-headers", "-C", "iscsid") ] + argv = [ "--no-headers", "-C", "iscsid" ] psout = iutil.execWithCapture("/usr/bin/ps", argv) for line in psout.split("\n"): if line: |
