Skip to content

Commit 2f9a064

Browse files
committed
Updated ignores. Updated Vagrant docs.
1 parent ed271d0 commit 2f9a064

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
*.pyc
2+
13
/gdrivefs.egg-info
24
/dist
35
/build

vagrant/bootstrap.sh

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ cd /gdrivefs
1818
python setup.py develop
1919

2020
# Create a mountpoint.
21+
#
22+
# We can't use /mnt/gdrivefs, because, for some reason, when we unmount that in
23+
# the Vagrant machine, it unmounts the shared-folder the the same name, too.
2124

22-
mkdir /mnt/gdrivefs
25+
mkdir /mnt/g
2326

2427
# Get the user going with an authorization URL.
2528

@@ -32,5 +35,15 @@ gdfstool auth -u
3235
echo " "
3336
echo "Once you have retrieved your authorization string, run:"
3437
echo " "
35-
echo "sudo gdfstool auth -a /var/cache/gdfs.creds <auth string>"
38+
echo " sudo gdfstool auth -a /var/cache/gdfs.creds <auth string>"
39+
echo " "
40+
echo " "
41+
echo "Once authorized, you can mount by calling (as root):"
42+
echo " "
43+
echo " gdfs /var/cache/gdfs.creds /mnt/g"
44+
echo " "
45+
echo "Or, to debug (and disable change-monitoring, to simplify things):"
46+
echo " "
47+
echo " GD_DEBUG=1 GD_MONITOR_CHANGES=0 gdfs /var/cache/gdfs.creds /mnt/g"
48+
echo " "
3649
echo " "

0 commit comments

Comments
 (0)