Problem on install
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Freedom Toaster Software |
Fix Committed
|
Low
|
Stefano Rivera |
Bug Description
output of Setup routine :
Downloading toaster software...
The authenticity of host 'bazaar.
RSA key fingerprint is 9d:38:3a:
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'bazaar.
Permission denied (publickey).
bzr: ERROR: Connection closed: Unexpected end of message. Please check connectivity and permissions, and report a bug if problems persist.
SetupScript: line 59: cd: /tmp/toaster-
Adding user `kiosk' ...
Adding new group `kiosk' (1009) ...
Adding new user `kiosk' (1008) with group `kiosk' ...
Creating home directory `/home/kiosk' ...
Copying files from `/etc/skel' ...
Created kiosk user account named 'kiosk'.
Setting up Kiosk environment...
install: cannot stat `/tmp/toaster-
tar: /tmp/toaster-
tar: Error is not recoverable: exiting now
cp: cannot stat `/tmp/toaster-
cp: cannot stat `/tmp/toaster-
install: cannot stat `/tmp/toaster-
ERROR: Site freedomtoaster does not exist!
* Reloading web server config apache2 apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
install: cannot stat `/tmp/toaster-
cp: cannot stat `/tmp/toaster-
cp: cannot stat `/tmp/toaster-
sed: can't read /srv/www/
Related branches
Changed in ftsoftware: | |
assignee: | nobody → Stefano Rivera (stefanor) |
importance: | Undecided → Low |
status: | New → Fix Committed |
this problem occurs here : install
bzr branch 'lp:~stefanor/ftsoftware/ft-karmic' /tmp/toaster-
it works as a normal user.
here is my patch :
if [ ! -d "$CHECKOUT" ]; then
# rm -rf "$CHECKOUT"
# bzr branch "$REPOS" "$CHECKOUT"
echo you must run the checkout script as a user with launchpad keys registerd
echo bzr branch "$REPOS" "$CHECKOUT"
cd "$CHECKOUT"
else
cd "$CHECKOUT"
# bzr clean-tree --force --detritus --ignored
echo you must run this outside of the sudo : cd "$CHECKOUT" and bzr pull --remember "$REPOS"
fi