mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-19 14:43:30 +02:00
* Added a warning to files derived by the build system. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
61 lines
2.0 KiB
Bash
Executable File
61 lines
2.0 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
@GENERATED_SCRIPT_FILE_WARNING@
|
|
|
|
# install_usermode.sh
|
|
#
|
|
# Install support files for usermode wrapper
|
|
#
|
|
# (C) Copyright 2021 Fred Gleason <fredg@paravelsystems.com>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
#
|
|
# 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, write to the Free Software
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
#
|
|
|
|
if test "$#" -eq 3 ; then
|
|
ACTION=$1
|
|
DESTDIR=$2
|
|
PREFIX=$3
|
|
else
|
|
ACTION=$1
|
|
PREFIX=$2
|
|
fi
|
|
|
|
if test "@HAVE_USERMODE@" != "yes" ; then
|
|
exit 0
|
|
fi
|
|
|
|
if test "$ACTION" = "install" ; then
|
|
mkdir -p $DESTDIR/etc/pam.d
|
|
cp rdalsaconfig-root-pam $DESTDIR/etc/pam.d/rdalsaconfig-root
|
|
cp rddbconfig-root-pam $DESTDIR/etc/pam.d/rddbconfig-root
|
|
mkdir -p $DESTDIR/etc/security/console.apps
|
|
cp rdalsaconfig-root-consolehelper $DESTDIR/etc/security/console.apps/rdalsaconfig-root
|
|
cp rddbconfig-root-consolehelper $DESTDIR/etc/security/console.apps/rddbconfig-root
|
|
mkdir -p $DESTDIR$PREFIX/bin
|
|
rm -f $DESTDIR$PREFIX/bin/rdalsaconfig-root
|
|
ln -s /usr/bin/consolehelper $DESTDIR$PREFIX/bin/rdalsaconfig-root
|
|
rm -f $DESTDIR$PREFIX/bin/rddbconfig-root
|
|
ln -s /usr/bin/consolehelper $DESTDIR$PREFIX/bin/rddbconfig-root
|
|
fi
|
|
|
|
if test "$ACTION" = "uninstall" ; then
|
|
rm -f $DESTDIR/etc/pam.d/rdalsaconfig-root
|
|
rm -f $DESTDIR/etc/security/console.apps/rdalsaconfig-root
|
|
rm -f $DESTDIR$PREFIX/bin/rdalsaconfig-root
|
|
rm -f $DESTDIR/etc/pam.d/rddbconfig-root
|
|
rm -f $DESTDIR/etc/security/console.apps/rddbconfig-root
|
|
rm -f $DESTDIR$PREFIX/bin/rddbconfig-root
|
|
fi
|
|
|