Egbert Eich
c15b3b7c58
- Only update config file for new user once, save backup copy. OBS-URL: https://build.opensuse.org/request/show/577586 OBS-URL: https://build.opensuse.org/package/show/network:cluster/conman?expand=0&rev=23
252 lines
7.2 KiB
RPMSpec
252 lines
7.2 KiB
RPMSpec
#
|
|
# spec file for package conman
|
|
#
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
#
|
|
#Compat macro for new _fillupdir macro introduced in Nov 2017
|
|
%if ! %{defined _fillupdir}
|
|
%define _fillupdir /var/adm/fillup-templates
|
|
%endif
|
|
|
|
%if 0%{?suse_version} > 1140
|
|
%define have_systemd 1
|
|
%ifarch x86_64
|
|
%define have_freeipmi 1
|
|
%endif
|
|
%endif
|
|
|
|
%if 0%{?have_systemd}
|
|
%if 0%{?sle_version} >= 150000 || 0%{?is_opensuse}
|
|
%define conmandir conman/
|
|
%define conman_g %name
|
|
%define conman_u %name
|
|
%else
|
|
%define conman_g root
|
|
%define conman_u root
|
|
%endif
|
|
%else
|
|
%define conman_g root
|
|
%define conman_u daemon
|
|
%endif
|
|
|
|
Name: conman
|
|
Version: 0.2.8
|
|
Release: 0
|
|
|
|
Summary: The Console Manager
|
|
License: GPL-3.0+
|
|
Group: System/Console
|
|
Url: http://dun.github.io/conman/
|
|
|
|
Requires: expect
|
|
Requires: logrotate
|
|
|
|
BuildRequires: tcpd-devel
|
|
%if 0%{?have_freeipmi}
|
|
BuildRequires: freeipmi-devel
|
|
%endif
|
|
Source0: https://github.com/dun/conman/archive/%{name}-%{version}.tar.gz
|
|
Source1: %{name}.service.in
|
|
%if 0%{?have_systemd}
|
|
BuildRequires: systemd
|
|
BuildRequires: systemd-rpm-macros
|
|
%{?systemd_requires}
|
|
Requires(pre): shadow
|
|
%endif
|
|
|
|
Patch1: conman-suse-fix-expect-scripts.patch
|
|
|
|
# 8/15/14 karl.w.schulz@intel.com - include prereq
|
|
%if 0%{?sles_version} || 0%{?suse_version}
|
|
PreReq: %{fillup_prereq}
|
|
%endif
|
|
|
|
%description
|
|
ConMan is a serial console management program designed to support a large
|
|
number of console devices and simultaneous users. It supports:
|
|
- local serial devices
|
|
- remote terminal servers (via the telnet protocol)
|
|
- IPMI Serial-Over-LAN (via FreeIPMI)
|
|
- Unix domain sockets
|
|
- external processes (eg, using Expect for telnet/ssh/ipmi-sol connections)
|
|
|
|
Its features include:
|
|
- logging (and optionally timestamping) console device output to file
|
|
- connecting to consoles in monitor (R/O) or interactive (R/W) mode
|
|
- allowing clients to share or steal console write privileges
|
|
- broadcasting client output to multiple consoles
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{name}-%{version}
|
|
%patch1 -p1
|
|
|
|
%build
|
|
%configure --with-tcp-wrappers \
|
|
%if 0%{?have_freeipmi}
|
|
--with-freeipmi \
|
|
%endif
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
%make_install
|
|
|
|
%if 0%{?have_systemd}
|
|
mkdir -p %{buildroot}%{_unitdir}
|
|
sed -e "s/@conman_u@/%conman_u/" -e "s/@conman_g@/%conman_g/" <%{SOURCE1} >%{buildroot}%{_unitdir}/%{name}.service
|
|
chmod 0644 %{buildroot}%{_unitdir}/%{name}.service
|
|
rm -rf %{buildroot}%{_sysconfdir}/init.d
|
|
ln -s %{_sbindir}/service %{buildroot}%{_sbindir}/rcconman
|
|
%else
|
|
awk "/END INIT INFO/ { print \"# Default-Start: 3 5\"; } {print;}" \
|
|
%{buildroot}%_sysconfdir/init.d/conman > %{buildroot}%_sysconfdir/init.d/conman.tmp
|
|
mv %{buildroot}%_sysconfdir/init.d/conman.tmp %{buildroot}%_sysconfdir/init.d/conman
|
|
ln -s %{_sysconfdir}/init.d/conman %{buildroot}%{_sbindir}/rcconman
|
|
chmod u+x %{buildroot}%{_sysconfdir}/init.d/conman
|
|
%endif
|
|
mkdir -p %{buildroot}%{_fillupdir}
|
|
mv %{buildroot}%{_sysconfdir}/sysconfig/conman \
|
|
%{buildroot}%{_fillupdir}/sysconfig.conman
|
|
for i in $(find %{buildroot}/usr/lib/conman) ; do
|
|
if [ -f $i -a -x $i ]; then
|
|
if ! head -1 $i | grep "^#!"; then
|
|
echo "#!/usr/bin/expect -f" > /tmp/$(basename $i)
|
|
cat $i >> /tmp/$(basename $i)
|
|
mv /tmp/$(basename $i) $i
|
|
chmod 0755 $i
|
|
fi
|
|
fi
|
|
done
|
|
|
|
%if 0%{?conmandir:1}
|
|
mkdir -p %{buildroot}%{_tmpfilesdir}
|
|
cat >> %{buildroot}%{_tmpfilesdir}/%{name}.conf <<EOF
|
|
d %_localstatedir%_rundir/%{name} 0755 %{conman_u} %{conman_g} -
|
|
EOF
|
|
mkdir -p %{buildroot}%{_localstatedir}/log/%{conmandir}
|
|
%endif
|
|
if ! grep "^SERVER" %{buildroot}/etc/conman.conf > /dev/null; then
|
|
cat <<EOF >> %{buildroot}/etc/conman.conf
|
|
SERVER keepalive=ON
|
|
SERVER logdir="/var/log/%{conmandir}"
|
|
SERVER logfile="/var/log/%{conmandir}conman.log"
|
|
SERVER loopback=ON
|
|
SERVER pidfile="/var/run/%{conmandir}conman.pid"
|
|
SERVER tcpwrappers=ON
|
|
SERVER timestamp=1h
|
|
GLOBAL seropts="115200,8n1"
|
|
GLOBAL log="console.%N"
|
|
GLOBAL logopts="sanitize,timestamp"
|
|
EOF
|
|
fi
|
|
|
|
%if 0%{?have_systemd}
|
|
%pre
|
|
%service_add_pre conman.service
|
|
%if 0%{?conmandir:1}
|
|
%define conman_home "%_localstatedir%_rundir/%conmandir"
|
|
%define conman_descr "Connection Manager service"
|
|
shopt -s nullglob
|
|
for i in /dev/ttyS[0-9] /dev/ttyS[1-9][0-9]
|
|
do TTYS_GRP=$(stat --format="%G" $i); break
|
|
done
|
|
addgrp=0; addusr=0
|
|
getent group %conman_g >/dev/null || addgrp=1
|
|
[ $addgrp -eq 1 ] && groupadd -r %conman_g
|
|
getent passwd %conman_u >/dev/null || addusr=1
|
|
[ $addusr -eq 1 ] && useradd -r -g %conman_g -d %conman_home \
|
|
-s /bin/false -c %conman_descr %conman_u
|
|
[ -n "$TTYS_GRP" ] && usermod -a -G $TTYS_GRP %conman_u
|
|
%endif
|
|
exit 0
|
|
%endif
|
|
|
|
%preun
|
|
%if 0%{?have_systemd}
|
|
%service_del_preun conman.service
|
|
%else
|
|
%{stop_on_removal conman}
|
|
%endif
|
|
|
|
%post
|
|
%define migrated conman_user_migrated
|
|
%fillup_only conman
|
|
%if 0%{?have_systemd}
|
|
%{?tmpfiles_create:%{tmpfiles_create %{_tmpfilesdir}/%{name}.conf}}
|
|
%service_add_post conman.service
|
|
[ -d %_localstatedir/lib/conman ] || mkdir %_localstatedir/lib/conman || :
|
|
if [ $1 -eq 2 -a ! -e %_localstatedir/lib/conman/%migrated ]; then
|
|
tmpfile=$(mktemp /tmp/tmp-XXXX)
|
|
sed -e "s@^\(server\)\|\(SERVER\) \+logdir=.*@SERVER logdir=\"/var/log/%{conmandir}\"@" \
|
|
-e "s@^\(server\)\|\(SERVER\) \+logfile=.*@SERVER logfile=\"/var/log/%{conmandir}conman.log\"@" \
|
|
-e "s@^\(server\)\|\(SERVER\) \+pidfile=.*@SERVER pidfile=\"/var/run/%{conmandir}conman.pid\"@" \
|
|
< /etc/conman.conf > $tmpfile
|
|
if ! cmp /etc/conman.conf $tmpfile; then
|
|
mv /etc/conman.conf /etc/conman.conf.rpmsave
|
|
mv $tmpfile /etc/conman.conf
|
|
chown %conman_u:%conman_g /etc/conman.conf
|
|
cat > %_localstatedir/adm/update-messages/%{name}-%{version}-%{release}-%{name}.txt <<EOF
|
|
|
|
The conman configuration in %_sysconfdir/conman.conf has been updated to the new pid and log
|
|
directory. Please check this file to make sure it is correct. The original version is available
|
|
in /etc/conman.conf.rpmsave.
|
|
EOF
|
|
else
|
|
rm $tmpfile
|
|
fi
|
|
fi
|
|
touch %_localstatedir/lib/conman/%migrated || :
|
|
%endif
|
|
|
|
%postun
|
|
%if 0%{?have_systemd}
|
|
[ $1 -eq 0 ] && rm -rf %_localstatedir/lib/conman
|
|
%service_del_postun conman.service
|
|
%else
|
|
%{restart_on_update conman}
|
|
%endif
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc AUTHORS
|
|
%doc DISCLAIMER*
|
|
%doc FAQ
|
|
%doc COPYING
|
|
%doc NEWS
|
|
%doc README
|
|
%doc PLATFORMS
|
|
%doc README.md
|
|
%doc THANKS
|
|
%config(noreplace) %attr(-,%conman_u,%conman_g) %{_sysconfdir}/conman.conf
|
|
%config(noreplace) %{_sysconfdir}/logrotate.d/conman
|
|
%if 0%{?conmandir:1}
|
|
%dir %attr(-,%conman_u,%conman_g) %{_localstatedir}/log/conman
|
|
%{_tmpfilesdir}/%{name}.conf
|
|
%endif
|
|
%{_fillupdir}/sysconfig.conman
|
|
%{_bindir}/*
|
|
%{_sbindir}/*
|
|
%{_prefix}/lib/conman
|
|
%if 0%{?have_systemd}
|
|
%{_prefix}/lib/systemd/*
|
|
%else
|
|
%{_sysconfdir}/init.d/*
|
|
%endif
|
|
%{_mandir}/*/*
|
|
|
|
%changelog
|