1
0
mirror of synced 2026-02-25 07:50:01 +00:00
This commit is contained in:
Steve Kemp
2009-01-06 21:01:51 +00:00
parent 6338ba62c4
commit 31719505f6
12 changed files with 20 additions and 13 deletions

View File

@@ -12,6 +12,7 @@
#
# Only used to build distribution tarballs.
#
TMP ?= /tmp
DIST_PREFIX = ${TMP}
VERSION = 4.1
BASE = xen-tools
@@ -56,7 +57,7 @@ clean:
@find . -name '*.tmp' -exec rm \{\} \;
@find . -name 'tags' -exec rm \{\} \;
@find . -name '*.8.gz' -exec rm \{\} \;
@find man -name '*.html' -exec rm \{\} \;
@if [ -d man ]; then rm -rf man ; fi
@if [ -e build-stamp ]; then rm -f build-stamp ; fi
@if [ -e configure-stamp ]; then rm -f configure-stamp ; fi
@if [ -d debian/xen-tools ]; then rm -rf ./debian/xen-tools; fi
@@ -195,6 +196,7 @@ install: fixup-perms install-bin install-etc install-hooks install-libraries ins
# Build our manpages via the `pod2man` command.
#
manpages:
mkdir man
cd bin; for i in *-*; do pod2man --release=${VERSION} --official --section=8 $$i ../man/$$i.8; done
for i in man/*.8; do gzip --force -9 $$i; done

View File

@@ -663,7 +663,7 @@ my $FAIL = 0;
#
# Release number.
#
my $RELEASE = '4.0';
my $RELEASE = '4.1';

View File

@@ -130,7 +130,7 @@ $CONFIG{'template'} = '/etc/xen-tools/xm-nfs.tmpl';
#
# Release number.
#
my $RELEASE = '4.0';
my $RELEASE = '4.1';
# store version number away.

View File

@@ -169,7 +169,7 @@ my %CONFIG;
#
# Release number.
#
my $RELEASE = '4.0';
my $RELEASE = '4.1';

View File

@@ -102,7 +102,7 @@ $CONFIG{'prefix'} = "/etc/xen";
#
# Release number.
#
my $RELEASE = '4.0';
my $RELEASE = '4.1';

View File

@@ -116,7 +116,7 @@ my %CONFIG;
#
# Release number.
#
my $RELEASE = '4.0';
my $RELEASE = '4.1';

View File

@@ -120,7 +120,7 @@ my %CONFIG;
#
# Release number.
#
my $RELEASE = '4.0';
my $RELEASE = '4.1';
#

View File

@@ -156,7 +156,7 @@ $CONFIG{'template'} = '/etc/xen-tools/xm.tmpl';
#
# Release number.
#
my $RELEASE = '4.0';
my $RELEASE = '4.1';

View File

@@ -97,7 +97,7 @@ my %CONFIG;
#
# Release number.
#
my $RELEASE = '4.0';
my $RELEASE = '4.1';

View File

@@ -113,7 +113,7 @@ my %CONFIG;
#
# Release number.
#
my $RELEASE = '4.0';
my $RELEASE = '4.1';
#

View File

@@ -41,7 +41,8 @@ cp /etc/resolv.conf ${prefix}/etc
#
# Process any of the present apt-conf setup lines.
#
for i in /etc/apt/apt.conf /etc/apt/apt.conf.d/* ; do
for i in /etc/apt/apt.conf $(run-parts --list /etc/apt/apt.conf.d) ; do
#
# If the file exists. (Need this in case the literal glob fails.)
@@ -52,7 +53,8 @@ for i in /etc/apt/apt.conf /etc/apt/apt.conf.d/* ; do
# Save the matching line(s) to the proxy guess file.
#
logMessage The use of a proxy detected.
grep -i HTTP::Proxy $i >> ${prefix}/etc/apt/apt.conf.d/proxy-guess
grep -v '^//' $i | grep -i HTTP::Proxy >>${prefix}/etc/apt/apt.conf.d/proxy-guess
fi
done

View File

@@ -42,7 +42,10 @@ if [ ! -z "${serial_device}" ]; then
# replace existing device.
mv ${prefix}/etc/event.d/tty1 ${prefix}/etc/event.d/${serial_device}
sed -i -e s/tty1/${serial_device}/ ${prefix}/etc/inittab
sed -i -e s/tty1/${serial_device}/ ${prefix}/etc/event.d/${serial_device}
[ -f ${prefix}/etc/inittab ] && sed -i -e s/tty1/${serial_device}/ ${prefix}/etc/inittab
# make sure that it is allowed to login.
echo $serial_device >> ${prefix}/etc/securetty