get rid of comment
[mirror/dsa-wiki.git] / input / doc / schroot.mdwn
index 307515d..1da1678 100644 (file)
@@ -8,21 +8,18 @@ When logging into Debian porterbox machine:
        $ schroot -l
 </code></pre>
 
-* Set a session name:
-<pre><code>
-       $ mysid=sid$RANDOM
-       $ echo "My session name is: $mysid"
-</code></pre>
-
 * Begin a persistent schroot session on Debian unstable:
 <pre><code>
-       $ schroot -b -c sid -n $mysid
+       # Pick your own session name:
+       $ echo -n "Session ID: " && read sessionid && schroot -b -c sid -n $sessionid
+       # or use a random one:
+       $ sessionid=$(schroot -b -c sid)
 </code></pre>
 
 * Update and upgrade Debian unstable chroot:
 <pre><code>
-       $ dd-schroot-cmd -c $mysid apt-get update
-       $ dd-schroot-cmd -c $mysid apt-get upgrade
+       $ dd-schroot-cmd -c $sessionid apt-get update
+       $ dd-schroot-cmd -c $sessionid apt-get upgrade
        [..]
        Do it for real [Y/n]: <Enter>
        [..]
@@ -30,7 +27,7 @@ When logging into Debian porterbox machine:
 
 * Install your broken package build dependencies:
 <pre><code>
-       $ dd-schroot-cmd -c $mysid apt-get build-dep gentoo
+       $ dd-schroot-cmd -c $sessionid apt-get build-dep gentoo
        [..]
        Do it for real [Y/n]: <Enter>
        [..]
@@ -38,7 +35,7 @@ When logging into Debian porterbox machine:
 
 * Change root to Debian unstable chroot:
 <pre><code>
-       $ schroot -r -c $mysid
+       $ schroot -r -c $sessionid
 </code></pre>
 
 * Download your broken package source:
@@ -49,7 +46,7 @@ When logging into Debian porterbox machine:
 * You should be able to reproduce your issue, hack on the package, fix the bug. Once you are done with your work, please, finish your schroot session:
 <pre><code>
        (sid_arch-dchroot)user@porterbox:~$ exit
-       $ schroot -e -c $mysid
+       $ schroot -e -c $sessionid
        $ exit
 </code></pre>