diff options
| author | Chris Lumens <clumens@redhat.com> | 2012-02-22 10:59:03 -0500 |
|---|---|---|
| committer | Chris Lumens <clumens@redhat.com> | 2012-02-22 11:01:16 -0500 |
| commit | 744b9ceb3f814c0faa8b2bd0a7b250ff6e2679d7 (patch) | |
| tree | 58f1baf8849999a4c7895e544fc4a81174be0e24 /data/post-scripts/Makefile.am | |
| parent | 47db08b32ea07596962ec92c11005e86c754070a (diff) | |
| download | anaconda-744b9ceb3f814c0faa8b2bd0a7b250ff6e2679d7.tar.gz anaconda-744b9ceb3f814c0faa8b2bd0a7b250ff6e2679d7.tar.xz anaconda-744b9ceb3f814c0faa8b2bd0a7b250ff6e2679d7.zip | |
Support implementing portions of anaconda's post-install as %post scripts.
For now, all that's supported is copying screenshots. However this could
be extended to other portions that really don't benefit from being in
python (restorecon, etc.). Of course none of these scripts get run yet
given that we don't have any way to run the kickstart file, but once we
do we'll get this for free.
Diffstat (limited to 'data/post-scripts/Makefile.am')
| -rw-r--r-- | data/post-scripts/Makefile.am | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/data/post-scripts/Makefile.am b/data/post-scripts/Makefile.am new file mode 100644 index 000000000..f2687cbb7 --- /dev/null +++ b/data/post-scripts/Makefile.am @@ -0,0 +1,22 @@ +# data/post-scripts/Makefile.am for anaconda +# +# Copyright (C) 2012 Red Hat, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# Author: Chris Lumens <clumens@redhat.com> + +postscriptsdir = $(datadir)/$(PACKAGE_NAME)/post-scripts +dist_postscripts_DATA = 90-copy-screenshots.ks +MAINTAINERCLEAFILES = Makefile.in |
