forked from pool/conman
Accepting request 532246 from network:cluster
- Updated to version 0.2.8: * Changed project homepage to <https://dun.github.io/conman/>. (#21) * Changed conman.conf default loopback setting to ON. * Changed rpm spec file from sysvinit to systemd. * Added 'server nofile' config directive to increase NOFILE limit. (#17) * Added '-P' cmdline opt to daemon for specifying pidfile. (#20) * Added test console device to aid in development and testing. * Fixed telnet option negotiation loop. (#9) * Fixed arbitrary limit on number of IPMI SOL consoles. (#15) * Fixed 4-character limit on timezones. (#16) * Fixed 1-second delay when connecting the client to a console. * Fixed UDS console reconnect delay to use exponential timeout. * Fixed UDS console reconnect delay to require min connect time before reset. * Fixed UDS console resource leak of pathname during config processing. * Fixed all gcc, clang, and Coverity Scan warnings. * Improved scalability of daemon. (forwarded request 532245 from eeich) OBS-URL: https://build.opensuse.org/request/show/532246 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/conman?expand=0&rev=4
This commit is contained in:
commit
a9fcac74fa
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:fcf31f06bbb13245f2cf3595d867f26440b73793cfe837831aec37d7276c0c9e
|
|
||||||
size 209589
|
|
3
conman-0.2.8.tar.gz
Normal file
3
conman-0.2.8.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7e2a4b6a48e09afd51e451729a48217e6b5b55d2087b7fcb545ee4b755dba224
|
||||||
|
size 239757
|
@ -2,7 +2,7 @@ Index: conman-0.2.7/lib/exec/ssh.exp
|
|||||||
===================================================================
|
===================================================================
|
||||||
--- conman-0.2.7.orig/lib/exec/ssh.exp
|
--- conman-0.2.7.orig/lib/exec/ssh.exp
|
||||||
+++ conman-0.2.7/lib/exec/ssh.exp
|
+++ conman-0.2.7/lib/exec/ssh.exp
|
||||||
@@ -168,7 +168,7 @@ expect {
|
@@ -166,7 +166,7 @@ expect {
|
||||||
}
|
}
|
||||||
exp_continue -continue_timer
|
exp_continue -continue_timer
|
||||||
}
|
}
|
||||||
@ -11,7 +11,7 @@ Index: conman-0.2.7/lib/exec/ssh.exp
|
|||||||
if {$authenticated == 0} {
|
if {$authenticated == 0} {
|
||||||
send "$pswd\r"
|
send "$pswd\r"
|
||||||
incr authenticated
|
incr authenticated
|
||||||
@@ -178,7 +178,7 @@ expect {
|
@@ -176,7 +176,7 @@ expect {
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 6 13:59:27 UTC 2017 - eich@suse.com
|
||||||
|
|
||||||
|
- Updated to version 0.2.8:
|
||||||
|
* Changed project homepage to <https://dun.github.io/conman/>. (#21)
|
||||||
|
* Changed conman.conf default loopback setting to ON.
|
||||||
|
* Changed rpm spec file from sysvinit to systemd.
|
||||||
|
* Added 'server nofile' config directive to increase NOFILE limit. (#17)
|
||||||
|
* Added '-P' cmdline opt to daemon for specifying pidfile. (#20)
|
||||||
|
* Added test console device to aid in development and testing.
|
||||||
|
* Fixed telnet option negotiation loop. (#9)
|
||||||
|
* Fixed arbitrary limit on number of IPMI SOL consoles. (#15)
|
||||||
|
* Fixed 4-character limit on timezones. (#16)
|
||||||
|
* Fixed 1-second delay when connecting the client to a console.
|
||||||
|
* Fixed UDS console reconnect delay to use exponential timeout.
|
||||||
|
* Fixed UDS console reconnect delay to require min connect time before reset.
|
||||||
|
* Fixed UDS console resource leak of pathname during config processing.
|
||||||
|
* Fixed all gcc, clang, and Coverity Scan warnings.
|
||||||
|
* Improved scalability of daemon.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 14 13:42:48 UTC 2017 - eich@suse.com
|
Mon Aug 14 13:42:48 UTC 2017 - eich@suse.com
|
||||||
|
|
||||||
|
11
conman.spec
11
conman.spec
@ -33,7 +33,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: conman
|
Name: conman
|
||||||
Version: 0.2.7
|
Version: 0.2.8
|
||||||
Release: 0
|
Release: 0
|
||||||
|
|
||||||
Summary: The Console Manager
|
Summary: The Console Manager
|
||||||
@ -48,7 +48,7 @@ BuildRequires: tcpd-devel
|
|||||||
%if 0%{?have_freeipmi}
|
%if 0%{?have_freeipmi}
|
||||||
BuildRequires: freeipmi-devel
|
BuildRequires: freeipmi-devel
|
||||||
%endif
|
%endif
|
||||||
Source0: https://github.com/dun/conman/releases/download/%{name}-%{version}/%{name}-%{version}.tar.bz2
|
Source0: https://github.com/dun/conman/archive/%{name}-%{version}.tar.gz
|
||||||
Source1: %{name}.service
|
Source1: %{name}.service
|
||||||
%if 0%{?have_systemd}
|
%if 0%{?have_systemd}
|
||||||
BuildRequires: systemd
|
BuildRequires: systemd
|
||||||
@ -80,7 +80,7 @@ Its features include:
|
|||||||
- broadcasting client output to multiple consoles
|
- broadcasting client output to multiple consoles
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{name}-%{version}
|
%setup -q -n %{name}-%{name}-%{version}
|
||||||
%patch1 -p1
|
%patch1 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -167,12 +167,13 @@ exit 0
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc AUTHORS
|
%doc AUTHORS
|
||||||
%doc ChangeLog
|
|
||||||
%doc COPYING
|
|
||||||
%doc DISCLAIMER*
|
%doc DISCLAIMER*
|
||||||
%doc FAQ
|
%doc FAQ
|
||||||
|
%doc COPYING
|
||||||
%doc NEWS
|
%doc NEWS
|
||||||
%doc README
|
%doc README
|
||||||
|
%doc PLATFORMS
|
||||||
|
%doc README.md
|
||||||
%doc THANKS
|
%doc THANKS
|
||||||
%config(noreplace) %attr(-,%conman_u,%conman_g) %{_sysconfdir}/conman.conf
|
%config(noreplace) %attr(-,%conman_u,%conman_g) %{_sysconfdir}/conman.conf
|
||||||
%config(noreplace) %{_sysconfdir}/logrotate.d/conman
|
%config(noreplace) %{_sysconfdir}/logrotate.d/conman
|
||||||
|
Loading…
x
Reference in New Issue
Block a user