-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathexample.moveinrc
52 lines (49 loc) · 1.37 KB
/
example.moveinrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# moveinrc: Define per-user installation info such as config repository
# and installation directory locations
#
# Instructions:
#
# 1. Create a new "installdata" project
#
# On server my.server.git:
#
# mkdir installdata.git
# cd installdata.git
# git init --bare
#
# Locally:
#
# mkdir installdata
# cd installdata
# git init
# git add .
# git commit -m "Initial commit"
#
# 2. Copy this file there, and rename it to moveinrc
#
# cp example.moveinrc installdata/moveinrc
#
# 3. Customize variables below
#
# 4. Commit it to your remote repository
#
# git remote add origin [email protected]:installdata.git
# git config branch.master.merge refs/heads/master
# git config branch.master.remote origin
# git push
#
# 5. Tell utiliscripts how to find your data
#
# export [email protected]:installdata.git
#
# 6. Run move-in script.
#
export [email protected]:config.git
export DRUPALORG_USERNAME=drupalorgusername
# List any project checked out by the move-in script that you
# would like to check out read/write from git here.
#export MAINTAINER="projecta projectb"
export UTILISCRIPTS=$HOME/local/utiliscripts
export CONFIG=$HOME/local/config
export SSH_KEY_ARCHIVE=$INSTALLATION_DATA/ssh_key_archive
export DESKTOP_BACKGROUND_DIR=$INSTALLATION_DATA/DesktopBackgrounds