#!/bin/sh
#
# aegis - project change supervisor
# Copyright (C) 2002, 2003, 2005-2008 Peter Miller
#
# 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
# .
#
# You can have sudo(8) run this script in the build if you add the
# following lines to the /etc/sudoers file.
#
# Cmnd_Alias AEGIS_SUID = \
# //baseline/etc/set-uid-root , \
# //delta*/etc/set-uid-root , \
# //branch.*/baseline/etc/set-uid-root , \
# //branch.*/delta*/etc/set-uid-root , \
# //branch.*/branch.*/baseline/etc/set-uid-root , \
# //branch.*/branch.*/delta*/etc/set-uid-root
#
# ALL=(root) AEGIS_SUID
# ALL=(root) NOPASSWD: AEGIS_SUID
#
# NOTE: you should not configure /etc/sudoers to run this script when
# it is in a user's development directory for dire security reasons.
#
arch=$1
shift
set -e
for f in $@
do
chown root $arch/bin/$f
chmod u+s $arch/bin/$f
done
exit 0