summaryrefslogtreecommitdiffstats
path: root/anaconda.spec.in
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>1999-12-06 16:51:36 +0000
committerMike Fulbright <msf@redhat.com>1999-12-06 16:51:36 +0000
commit939ba3b744931d851d5716b265dc58d4b32b585f (patch)
treef9796415cad2bf9bc1c6e283c4a1427384ee0b0d /anaconda.spec.in
parentabd110216461b94b52617fd81b284e5bf267e651 (diff)
downloadanaconda-939ba3b744931d851d5716b265dc58d4b32b585f.tar.gz
anaconda-939ba3b744931d851d5716b265dc58d4b32b585f.tar.xz
anaconda-939ba3b744931d851d5716b265dc58d4b32b585f.zip
Rename from anaconda-reconfig to anaconda
Diffstat (limited to 'anaconda.spec.in')
-rw-r--r--anaconda.spec.in63
1 files changed, 63 insertions, 0 deletions
diff --git a/anaconda.spec.in b/anaconda.spec.in
new file mode 100644
index 000000000..ec8c10b83
--- /dev/null
+++ b/anaconda.spec.in
@@ -0,0 +1,63 @@
+Name: anaconda
+Version: @@VERSION@@
+Release: 5
+Copyright: GPL
+Summary: The Red Hat Linux first time booting configuration tool.
+Group: Applications/System
+Source: anaconda-%{PACKAGE_VERSION}.tar.gz
+Obsoletes: rhs-hwdiag setconsole
+Prereq: chkconfig
+BuildRoot: /var/tmp/anaconda-%{PACKAGE_VERSION}
+
+%description
+anaconda is usually run the first-time a pre-installed computer
+is booted. It allows the first-time user to configure localized
+attributes like timezone and root password.
+
+
+%prep
+
+%setup -q
+
+%build
+make RPM_OPT_FLAGS="$RPM_OPT_FLAGS"
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make RECFGDESTDIR=$RPM_BUILD_ROOT install-reconfig
+#strip $RPM_BUILD_ROOT/usr/sbin/ddcprobe
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post
+chkconfig --add reconfig
+
+%preun
+if [ $1 = 0 ]; then
+ chkconfig --del reconfig
+fi
+
+%files
+%defattr(-,root,root)
+%doc COPYING
+/usr/sbin/anaconda
+#/usr/sbin/ddcprobe
+/usr/share/anaconda/*
+/usr/share/locale/*/*/*
+/usr/lib/anaconda/*
+
+%config /etc/rc.d/init.d/reconfig
+
+
+%changelog
+
+* Mon Dec 06 1999 Michael Fulbright <drmike@redhat.com>
+- rename to 'anaconda' instead of 'anaconda-reconfig'
+
+* Fri Dec 03 1999 Michael Fulbright <drmike@redhat.com>
+- remove ddcprobe since we don't do X configuration in reconfig now
+
+* Tue Nov 30 1999 Michael Fulbright <drmike@redhat.com>
+- first try at packaging reconfiguration tool
+