7ffd0b3f49
OBS-URL: https://build.opensuse.org/package/show/Application:ERP:GNUHealth:Factory/gnuhealth?expand=0&rev=19
44 lines
1.4 KiB
Bash
44 lines
1.4 KiB
Bash
#!/bin/bash
|
|
|
|
# GNU Health dummy program - for thos who dont read manuals
|
|
|
|
##############################################################################
|
|
#
|
|
# GNU Health dummy
|
|
#
|
|
# Copyright (C) 2018 Axel Braun <abraun@gnusolidario.org>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 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 General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
##############################################################################
|
|
|
|
cat << EOF
|
|
|
|
You have installed GNU Health and no idea how it should work.
|
|
(Otherwise you would not see this message)
|
|
|
|
How about reading a fine manual? You find it at
|
|
/usr/share/doc/packages/gnuhealth/GNUHealth.README.SUSE
|
|
|
|
Or see the full documentation at
|
|
https://en.wikibooks.org/wiki/GNU_Health
|
|
|
|
Want to start immediately with some configuration?
|
|
Run openSUSE-gnuhealth-setup
|
|
|
|
Whatever you do...have fun!
|
|
|
|
EOF
|
|
exit 0
|