1
0
mirror of synced 2026-01-18 08:52:38 +00:00
Axel Beckert cc2a6d4e41 Change all occurrences of $prefix in hooks and roles with $TARGET
"target" is also the name used in the debian installer for the
installation target while "prefix" is too ambiguous.
2013-04-18 21:01:19 +02:00

47 lines
688 B
Bash
Executable File

#!/bin/sh
#
# This role installs sudo with host sudoers file.
#
TARGET=$1
#
# Source our common functions - this will let us install a Debian package.
#
if [ -e /usr/share/xen-tools/common.sh ]; then
. /usr/share/xen-tools/common.sh
else
echo "Installation problem"
fi
#
# Log our start
#
logMessage Script $0 starting
#
# Install sudo package
#
installDebianPackage ${TARGET} sudo
#
# WARNING :
#
# Copying this file means that root users in guest will KNOW who is
# root on host.
#
#
# Copy dom0's file to domU.
#
cp /etc/sudoers ${TARGET}/etc/
chown root:root ${TARGET}/etc/sudoers
chmod 440 ${TARGET}/etc/sudoers
#
# Log our finish
#
logMessage Script $0 finished