The branch, tmpfs has been updated
via ca9127b0da95499395f0052d54904f097ff59cee (commit)
via f315eb97f34256dc00eeadcfafa30f253a8c228b (commit)
via 72e7e4ddd25d73412afacbe6489b0db3f7f728f9 (commit)
from e8ace387e99645094a91e1d7a72ad8057a099d9f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log ------------------------------------------------------…
[View More]-----------
commit ca9127b0da95499395f0052d54904f097ff59cee
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
Date: Wed Jun 15 17:55:30 2011 +0200
More verbose comment at end of x2gothinclient_prepftpboot script
commit f315eb97f34256dc00eeadcfafa30f253a8c228b
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
Date: Wed Jun 15 17:48:28 2011 +0200
Symlinks fixed.
commit 72e7e4ddd25d73412afacbe6489b0db3f7f728f9
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
Date: Wed Jun 15 17:46:13 2011 +0200
Using quotation marks...
-----------------------------------------------------------------------
Summary of changes:
.../bin/x2gothinclient_preptftpboot | 25 ++++++++++++-------
x2gothinclientmanagement/bin/x2gothinclient_shell | 6 ++--
2 files changed, 19 insertions(+), 12 deletions(-)
The diff of changes is:
diff --git a/x2gothinclientmanagement/bin/x2gothinclient_preptftpboot b/x2gothinclientmanagement/bin/x2gothinclient_preptftpboot
index a0d8a35..9ad5c52 100755
--- a/x2gothinclientmanagement/bin/x2gothinclient_preptftpboot
+++ b/x2gothinclientmanagement/bin/x2gothinclient_preptftpboot
@@ -59,24 +59,31 @@ echo "Linking files for X2go's TFTP (syslinux) boot environment..."
cd "$TC_TFTP_BOOT"
# 486 kernel image
-ln -sfv "$TC_TFTP_BOOT/vmlinuz.486" "$TC_CHROOT/vmlinuz.486"
-ln -sfv "$TC_TFTP_BOOT/initrd.img.486" "$TC_CHROOT/initrd.img.486"
+ln -sfv "$TC_CHROOT/vmlinuz.486" "$TC_TFTP_BOOT/vmlinuz.486"
+ln -sfv "$TC_CHROOT/initrd.img.486" "$TC_TFTP_BOOT/initrd.img.486"
# 686 kernel image
-ln -sfv "$TC_TFTP_BOOT/vmlinuz.686" "$TC_CHROOT/vmlinuz.686"
-ln -sfv "$TC_TFTP_BOOT/initrd.img.686" "$TC_CHROOT/initrd.img.686"
+ln -sfv "$TC_CHROOT/vmlinuz.686" "$TC_TFTP_BOOT/vmlinuz.686"
+ln -sfv "$TC_CHROOT/initrd.img.686" "$TC_TFTP_BOOT/initrd.img.686"
# memtest86+
-ln -sfv "$TC_TFTP_BOOT/memtest86+.bin" "$TC_CHROOT/boot/memtest86+.bin"
+ln -sfv "$TC_CHROOT/boot/memtest86+.bin" "$TC_TFTP_BOOT/memtest86+.bin"
# syslinux components
-ln -sfv "$TC_TFTP_BOOT/pxelinux.0" "/usr/lib/syslinux/pxelinux.0"
-ln -sfv "$TC_TFTP_BOOT/vesamenu.c32" "/usr/lib/syslinux/vesamenu.c32"
+ln -sfv "/usr/lib/syslinux/pxelinux.0" "$TC_TFTP_BOOT/pxelinux.0"
+ln -sfv "/usr/lib/syslinux/vesamenu.c32" "$TC_TFTP_BOOT/vesamenu.c32"
cd - > /dev/null
echo
-echo "DONE with PXE/Syslinux environment setup."
+echo "DONE with X2go PXE/Syslinux environment setup."
+echo "Two manual steps are still needed...
+
echo
-echo "Make sure your DHCP server's configuration points to:"
+echo "1. Make sure your DHCP server's configuration points to:"
echo
echo " next-server <IP-or-hostname-of-this-server>;"
echo " filename '/pxelinux.0';"
echo
+echo "2. Export the X2go Thin Client chroot environment via NFSv3:"
+echo
+echo " Add this line to /etc/exports..."
+echo " $TC_CHROOT <your-network>/<netmask>(ro,async,no_root_squash)"
+echo
diff --git a/x2gothinclientmanagement/bin/x2gothinclient_shell b/x2gothinclientmanagement/bin/x2gothinclient_shell
index 98fede0..0d26014 100755
--- a/x2gothinclientmanagement/bin/x2gothinclient_shell
+++ b/x2gothinclientmanagement/bin/x2gothinclient_shell
@@ -45,10 +45,10 @@ export HOME=/root
export http_proxy=$TC_HTTP_PROXY
export ftp_proxy=$TC_FTP_PROXY
-echo This shell has been started in your X2go Thin Clients chroot environment. All changes performed here
-echo will take effect on your X2go Thin Clients after their next (re)boot. So be careful!!!
+echo 'This shell has been started in your X2go Thin Clients chroot environment. All changes performed here'
+echo 'will take effect on your X2go Thin Clients after their next (re)boot. So be careful!!!'
echo
-echo To return from this chroot shell hit STRG+D or type exit on the command line...
+echo 'To return from this chroot shell hit STRG+D or type ,,exit'' on the command line...'
echo
/bin/$TC_SHELL
hooks/post-receive
--
x2gothinclient.git (X2go Thin Client Environment)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2gothinclient.git" (X2go Thin Client Environment).
[View Less]
The branch, tmpfs has been updated
via e8ace387e99645094a91e1d7a72ad8057a099d9f (commit)
from 644c67dafb490bc6eaa5a4f7a8879cb3c86df548 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit e8ace387e99645094a91e1d7a72ad8057a099d9f
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
…
[View More]Date: Wed Jun 15 00:59:52 2011 +0200
Another grammar fix.
-----------------------------------------------------------------------
Summary of changes:
x2gothinclientmanagement/bin/x2gothinclient_shell | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
The diff of changes is:
diff --git a/x2gothinclientmanagement/bin/x2gothinclient_shell b/x2gothinclientmanagement/bin/x2gothinclient_shell
index 6dfa846..98fede0 100755
--- a/x2gothinclientmanagement/bin/x2gothinclient_shell
+++ b/x2gothinclientmanagement/bin/x2gothinclient_shell
@@ -46,7 +46,7 @@ export http_proxy=$TC_HTTP_PROXY
export ftp_proxy=$TC_FTP_PROXY
echo This shell has been started in your X2go Thin Clients chroot environment. All changes performed here
-echo will take effect on your X2go Thin Clients after next boot. So be careful!!!
+echo will take effect on your X2go Thin Clients after their next (re)boot. So be careful!!!
echo
echo To return from this chroot shell hit STRG+D or type exit on the command line...
echo
hooks/post-receive
--
x2gothinclient.git (X2go Thin Client Environment)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2gothinclient.git" (X2go Thin Client Environment).
[View Less]
The branch, tmpfs has been updated
via 644c67dafb490bc6eaa5a4f7a8879cb3c86df548 (commit)
from 3ff0240b43e1540901a9a500ca653619213ac116 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 644c67dafb490bc6eaa5a4f7a8879cb3c86df548
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
…
[View More]Date: Wed Jun 15 00:59:12 2011 +0200
Grammar fix.
-----------------------------------------------------------------------
Summary of changes:
x2gothinclientmanagement/bin/x2gothinclient_shell | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
The diff of changes is:
diff --git a/x2gothinclientmanagement/bin/x2gothinclient_shell b/x2gothinclientmanagement/bin/x2gothinclient_shell
index 6798ca0..6dfa846 100755
--- a/x2gothinclientmanagement/bin/x2gothinclient_shell
+++ b/x2gothinclientmanagement/bin/x2gothinclient_shell
@@ -46,7 +46,7 @@ export http_proxy=$TC_HTTP_PROXY
export ftp_proxy=$TC_FTP_PROXY
echo This shell has been started in your X2go Thin Clients chroot environment. All changes performed here
-echo will take an effect on your X2go Thin Clients after next boot. So be careful!!!
+echo will take effect on your X2go Thin Clients after next boot. So be careful!!!
echo
echo To return from this chroot shell hit STRG+D or type exit on the command line...
echo
hooks/post-receive
--
x2gothinclient.git (X2go Thin Client Environment)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2gothinclient.git" (X2go Thin Client Environment).
[View Less]
The branch, tmpfs has been updated
via 3ff0240b43e1540901a9a500ca653619213ac116 (commit)
via 96aa9d8380fef27e38d2605cd758a46fdda98313 (commit)
from 8ec9cae88234569b0f834a6c1879dea3c0b8f81b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 3ff0240b43e1540901a9a500ca653619213ac116
…
[View More]Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
Date: Wed Jun 15 00:45:18 2011 +0200
Silence mounts/unmounts
commit 96aa9d8380fef27e38d2605cd758a46fdda98313
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
Date: Wed Jun 15 00:45:08 2011 +0200
Revert one line of last commit.
-----------------------------------------------------------------------
Summary of changes:
x2gothinclientmanagement/bin/x2gothinclient_shell | 2 +-
.../bin/x2gothinclient_upgrade | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
The diff of changes is:
diff --git a/x2gothinclientmanagement/bin/x2gothinclient_shell b/x2gothinclientmanagement/bin/x2gothinclient_shell
index 604127c..6798ca0 100755
--- a/x2gothinclientmanagement/bin/x2gothinclient_shell
+++ b/x2gothinclientmanagement/bin/x2gothinclient_shell
@@ -39,7 +39,7 @@ cat > "$TC_CHROOT/x2go_tce_shell.sh" <<EOF
#!/bin/bash
mount /proc &> /dev/null
mount /dev/pts &> /dev/null
-export HOME=/root &> /dev/null
+export HOME=/root
# export the proxy server (if any) to the shell.
export http_proxy=$TC_HTTP_PROXY
diff --git a/x2gothinclientmanagement/bin/x2gothinclient_upgrade b/x2gothinclientmanagement/bin/x2gothinclient_upgrade
index e7a4808..e1a755b 100755
--- a/x2gothinclientmanagement/bin/x2gothinclient_upgrade
+++ b/x2gothinclientmanagement/bin/x2gothinclient_upgrade
@@ -36,8 +36,8 @@ TC_CHROOT="${TC_CHROOT:-/opt/x2gothinclient}"
cat > "$TC_CHROOT/x2go_tc_update.sh" <<EOF
#!/bin/bash
-mount /proc
-mount /dev/pts
+mount /proc &> /dev/null
+mount /dev/pts &> /dev/null
export HOME=/root
export http_proxy=$TC_HTTP_PROXY
@@ -46,8 +46,8 @@ export ftp_proxy=$TC_FTP_PROXY
[ $? -eq 0 ] && apt-get update
[ $? -eq 0 ] && apt-get upgrade
-umount -l /proc
-umount -l /dev/pts
+umount -l /proc &> /dev/null
+umount -l /dev/pts &> /dev/null
EOF
chmod u+x "$TC_CHROOT/x2go_tc_update.sh"
chroot "$TC_CHROOT" /x2go_tc_update.sh
hooks/post-receive
--
x2gothinclient.git (X2go Thin Client Environment)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2gothinclient.git" (X2go Thin Client Environment).
[View Less]
The branch, tmpfs has been updated
via 8ec9cae88234569b0f834a6c1879dea3c0b8f81b (commit)
from 45a6c65af09dd27e9ca1cfb3836031a6d84519fe (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 8ec9cae88234569b0f834a6c1879dea3c0b8f81b
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
…
[View More]Date: Wed Jun 15 00:41:53 2011 +0200
Fix x2gothinclient_shell, silence mounts/umounts
-----------------------------------------------------------------------
Summary of changes:
x2gothinclientmanagement/bin/x2gothinclient_shell | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
The diff of changes is:
diff --git a/x2gothinclientmanagement/bin/x2gothinclient_shell b/x2gothinclientmanagement/bin/x2gothinclient_shell
index 143b4de..604127c 100755
--- a/x2gothinclientmanagement/bin/x2gothinclient_shell
+++ b/x2gothinclientmanagement/bin/x2gothinclient_shell
@@ -37,24 +37,24 @@ TC_CHROOT="${TC_CHROOT:-/opt/x2gothinclient}"
cat > "$TC_CHROOT/x2go_tce_shell.sh" <<EOF
#!/bin/bash
-mount /proc
-mount /dev/pts
-export HOME=/root
+mount /proc &> /dev/null
+mount /dev/pts &> /dev/null
+export HOME=/root &> /dev/null
# export the proxy server (if any) to the shell.
export http_proxy=$TC_HTTP_PROXY
export ftp_proxy=$TC_FTP_PROXY
-echo "This shell has been started in your X2go Thin Clients chroot environment. All changes performed here
-echo "will take an effect on your X2go Thin Clients after next boot. So be careful!!!"
+echo This shell has been started in your X2go Thin Clients chroot environment. All changes performed here
+echo will take an effect on your X2go Thin Clients after next boot. So be careful!!!
echo
-echo "To return from this chroot shell hit STRG+D or type exit on the command line..."
+echo To return from this chroot shell hit STRG+D or type exit on the command line...
echo
/bin/$TC_SHELL
-umount -l /proc
-umount -l /dev/pts
+umount -l /proc &> /dev/null
+umount -l /dev/pts &> /dev/null
EOF
chmod u+x "$TC_CHROOT/x2go_tce_shell.sh"
chroot "$TC_CHROOT" /x2go_tce_shell.sh
hooks/post-receive
--
x2gothinclient.git (X2go Thin Client Environment)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2gothinclient.git" (X2go Thin Client Environment).
[View Less]
The branch, tmpfs has been updated
via 45a6c65af09dd27e9ca1cfb3836031a6d84519fe (commit)
from ca8cd81de0ff7d6e62c4dc1a5a6b398356b59332 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 45a6c65af09dd27e9ca1cfb3836031a6d84519fe
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
…
[View More]Date: Wed Jun 15 00:38:16 2011 +0200
Add some comment after PXE installation.
-----------------------------------------------------------------------
Summary of changes:
.../bin/x2gothinclient_preptftpboot | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
The diff of changes is:
diff --git a/x2gothinclientmanagement/bin/x2gothinclient_preptftpboot b/x2gothinclientmanagement/bin/x2gothinclient_preptftpboot
index 8817f35..a0d8a35 100755
--- a/x2gothinclientmanagement/bin/x2gothinclient_preptftpboot
+++ b/x2gothinclientmanagement/bin/x2gothinclient_preptftpboot
@@ -71,3 +71,12 @@ ln -sfv "$TC_TFTP_BOOT/pxelinux.0" "/usr/lib/syslinux/pxelinux.0"
ln -sfv "$TC_TFTP_BOOT/vesamenu.c32" "/usr/lib/syslinux/vesamenu.c32"
cd - > /dev/null
+
+echo
+echo "DONE with PXE/Syslinux environment setup."
+echo
+echo "Make sure your DHCP server's configuration points to:"
+echo
+echo " next-server <IP-or-hostname-of-this-server>;"
+echo " filename '/pxelinux.0';"
+echo
hooks/post-receive
--
x2gothinclient.git (X2go Thin Client Environment)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2gothinclient.git" (X2go Thin Client Environment).
[View Less]
The branch, tmpfs has been updated
via ca8cd81de0ff7d6e62c4dc1a5a6b398356b59332 (commit)
from 10f4efd4d4f23902df6dd34b3c0e5231b2947f11 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit ca8cd81de0ff7d6e62c4dc1a5a6b398356b59332
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
…
[View More]Date: Wed Jun 15 00:31:25 2011 +0200
Remove symlinks from tftpboot template configuration
-----------------------------------------------------------------------
Summary of changes:
.../share/tftpboot/initrd.img.486 | 1 -
.../share/tftpboot/initrd.img.686 | 1 -
.../share/tftpboot/memtest86+.bin | 1 -
x2gothinclientmanagement/share/tftpboot/pxelinux.0 | 1 -
.../share/tftpboot/vesamenu.c32 | 1 -
.../share/tftpboot/vmlinuz.486 | 1 -
.../share/tftpboot/vmlinuz.686 | 1 -
7 files changed, 0 insertions(+), 7 deletions(-)
delete mode 120000 x2gothinclientmanagement/share/tftpboot/initrd.img.486
delete mode 120000 x2gothinclientmanagement/share/tftpboot/initrd.img.686
delete mode 120000 x2gothinclientmanagement/share/tftpboot/memtest86+.bin
delete mode 120000 x2gothinclientmanagement/share/tftpboot/pxelinux.0
delete mode 120000 x2gothinclientmanagement/share/tftpboot/vesamenu.c32
delete mode 120000 x2gothinclientmanagement/share/tftpboot/vmlinuz.486
delete mode 120000 x2gothinclientmanagement/share/tftpboot/vmlinuz.686
The diff of changes is:
diff --git a/x2gothinclientmanagement/share/tftpboot/initrd.img.486 b/x2gothinclientmanagement/share/tftpboot/initrd.img.486
deleted file mode 120000
index fc94893..0000000
--- a/x2gothinclientmanagement/share/tftpboot/initrd.img.486
+++ /dev/null
@@ -1 +0,0 @@
-/opt/x2gothinclient/chroot/initrd.img.old
\ No newline at end of file
diff --git a/x2gothinclientmanagement/share/tftpboot/initrd.img.686 b/x2gothinclientmanagement/share/tftpboot/initrd.img.686
deleted file mode 120000
index a4d7dbc..0000000
--- a/x2gothinclientmanagement/share/tftpboot/initrd.img.686
+++ /dev/null
@@ -1 +0,0 @@
-/opt/x2gothinclient/chroot/initrd.img
\ No newline at end of file
diff --git a/x2gothinclientmanagement/share/tftpboot/memtest86+.bin b/x2gothinclientmanagement/share/tftpboot/memtest86+.bin
deleted file mode 120000
index cba533a..0000000
--- a/x2gothinclientmanagement/share/tftpboot/memtest86+.bin
+++ /dev/null
@@ -1 +0,0 @@
-/opt/x2gothinclient/chroot/boot/memtest86+.bin
\ No newline at end of file
diff --git a/x2gothinclientmanagement/share/tftpboot/pxelinux.0 b/x2gothinclientmanagement/share/tftpboot/pxelinux.0
deleted file mode 120000
index 0f93aef..0000000
--- a/x2gothinclientmanagement/share/tftpboot/pxelinux.0
+++ /dev/null
@@ -1 +0,0 @@
-/usr/lib/syslinux/pxelinux.0
\ No newline at end of file
diff --git a/x2gothinclientmanagement/share/tftpboot/vesamenu.c32 b/x2gothinclientmanagement/share/tftpboot/vesamenu.c32
deleted file mode 120000
index d06c444..0000000
--- a/x2gothinclientmanagement/share/tftpboot/vesamenu.c32
+++ /dev/null
@@ -1 +0,0 @@
-/usr/lib/syslinux/vesamenu.c32
\ No newline at end of file
diff --git a/x2gothinclientmanagement/share/tftpboot/vmlinuz.486 b/x2gothinclientmanagement/share/tftpboot/vmlinuz.486
deleted file mode 120000
index f7680da..0000000
--- a/x2gothinclientmanagement/share/tftpboot/vmlinuz.486
+++ /dev/null
@@ -1 +0,0 @@
-/opt/x2gothinclient/chroot/vmlinuz.486
\ No newline at end of file
diff --git a/x2gothinclientmanagement/share/tftpboot/vmlinuz.686 b/x2gothinclientmanagement/share/tftpboot/vmlinuz.686
deleted file mode 120000
index d75d1d6..0000000
--- a/x2gothinclientmanagement/share/tftpboot/vmlinuz.686
+++ /dev/null
@@ -1 +0,0 @@
-/opt/x2gothinclient/chroot/vmlinuz.686
\ No newline at end of file
hooks/post-receive
--
x2gothinclient.git (X2go Thin Client Environment)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2gothinclient.git" (X2go Thin Client Environment).
[View Less]
The branch, tmpfs has been updated
via 10f4efd4d4f23902df6dd34b3c0e5231b2947f11 (commit)
from 6a0f93df87a3e2ae3226b1e15d548fc21ecc15a3 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 10f4efd4d4f23902df6dd34b3c0e5231b2947f11
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
…
[View More]Date: Wed Jun 15 00:08:22 2011 +0200
Add man page for x2gothinclient_preptftpboot.
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 1 +
.../man/x2gothinclient_preptftpboot.8 | 36 ++++++++++++++++++++
2 files changed, 37 insertions(+), 0 deletions(-)
create mode 100644 x2gothinclientmanagement/man/x2gothinclient_preptftpboot.8
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 1c0614c..6fb5f91 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -16,6 +16,7 @@ x2gothinclient (1.0.1.3-0~x2go1) UNRELEASED; urgency=low
* Move PXE tftpboot examples to x2gothinclient/share/tftpboot.
* Improval of syslinux boot screen.
* Add x2gothinclient_preptftpboot script.
+ * Add man page for x2gothinclient_preptftpboot.
-- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Sat, 28 May 2011 12:04:34 +0200
diff --git a/x2gothinclientmanagement/man/x2gothinclient_preptftpboot.8 b/x2gothinclientmanagement/man/x2gothinclient_preptftpboot.8
new file mode 100644
index 0000000..379b3ff
--- /dev/null
+++ b/x2gothinclientmanagement/man/x2gothinclient_preptftpboot.8
@@ -0,0 +1,36 @@
+'\" -*- coding: utf-8 -*-
+.if \n(.g .ds T< \\FC
+.if \n(.g .ds T> \\F[\n[.fam]]
+.de URL
+\\$2 \(la\\$1\(ra\\$3
+..
+.if \n(.g .mso www.tmac
+.TH x2gothinclient_preptftpboot 8 "14 June 2011" "Version <UNRELEASED>" "X2go Thin Client Environment"
+.SH NAME
+x2gothinclient_preptftpboot \- Prepare PXE/Syslinux Boot Environment (delivered via tftpd) on X2go PXE Server.
+.SH SYNOPSIS
+'nh
+.fi
+.ad l
+\fBx2gothinclient_preptftpboot\fR
+
+.SH DESCRIPTION
+This helper script prepares X2go's PXE/Syslinux boot environment. As X2go PXE
+server you can either use your X2go server itself or a dedicated machine or VM that merely serves
+as PXE boot server.
+
+Please run the \fBx2gothinclient_create\fR helper script first before you run this script.
+
+This script can only be called if the PXE boot dir (default: /srv/tftp) does not already
+contain any other PXE/Syslinux boot environment.
+.PP
+.SH OPTIONS
+\fBx2gothinclient_pretftpboot\fR has no known options.
+.PP
+.SH FILES
+/etc/x2go/x2gothinclient_settings
+ Configuration file for x2gothinclient_* scripts.
+.PP
+.SH AUTHOR
+This manual has been written by Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> for the X2go project
+(http://www.x2go.org).
hooks/post-receive
--
x2gothinclient.git (X2go Thin Client Environment)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2gothinclient.git" (X2go Thin Client Environment).
[View Less]
The branch, tmpfs has been updated
via 6a0f93df87a3e2ae3226b1e15d548fc21ecc15a3 (commit)
from fc86ce209cf31ff52c0dc7605f48949362c64826 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 6a0f93df87a3e2ae3226b1e15d548fc21ecc15a3
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de>
…
[View More]Date: Wed Jun 15 00:07:20 2011 +0200
Add a test for already existing PXE boot configs
-----------------------------------------------------------------------
Summary of changes:
.../bin/x2gothinclient_preptftpboot | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
The diff of changes is:
diff --git a/x2gothinclientmanagement/bin/x2gothinclient_preptftpboot b/x2gothinclientmanagement/bin/x2gothinclient_preptftpboot
index 166ff4f..8817f35 100755
--- a/x2gothinclientmanagement/bin/x2gothinclient_preptftpboot
+++ b/x2gothinclientmanagement/bin/x2gothinclient_preptftpboot
@@ -40,7 +40,12 @@ TC_CHROOT="${TC_CHROOT:-$TC_BASE/chroot}"
TC_TFTP_FILES="${TC_TFTP_FILES:-$SHAREDIR/tftpboot}"
TC_TFTP_BOOT="${TC_TFTP_BOOT:-/srv/tftp}"
-mkdir -p "$TC_TFTP_FILES"
+mkdir -p "$TC_TFTP_BOOT"
+
+test -d "$TC_TFTP_BOOT/pxelinux.cfg" && {
+ echo "PXE boot files already found at $TC_TFTP_BOOT. Clear $TC_TFTP_BOOT/ and then run $(basename $0) again..."
+ exit -1
+}
echo "Preparing PXE boot configuration for X2go TCE..."
echo "------------------------------------------------"
hooks/post-receive
--
x2gothinclient.git (X2go Thin Client Environment)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2gothinclient.git" (X2go Thin Client Environment).
[View Less]