forked from johndrinkwater/steam-root
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate.sh
More file actions
executable file
·246 lines (212 loc) · 5 KB
/
create.sh
File metadata and controls
executable file
·246 lines (212 loc) · 5 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
#!/bin/sh
# Set up useful variables
distribution=precise # Codename for Ubuntu 12.04 LTS
actions=""
host_arch=`dpkg --print-architecture`
# Get to the script directory
cd `dirname $0`
exit_usage()
{
echo "Usage: $0 [--create|--update|--archive|--shell] <arch> <version>" >&2
exit 1
}
while [ "$1" ]; do
case "$1" in
--create|--update|--archive|--shell)
actions="$actions $1"
;;
--*)
echo "Unknown command line parameter: $1" >&2
exit_usage
;;
*)
if [ "$arch" = "" ]; then
case "$1" in
i386|amd64)
arch=$1
;;
*)
echo "Unsupported architecture: $1, valid values are i386, amd64" >&2
exit 1
;;
esac
elif [ "$version" = "" ]; then
case "$1" in
*.*.*)
version=$1
;;
*)
echo "Expected version in the form major.minor.patch" >&2
exit 1
;;
esac
else
echo "Unknown command line parameter: $1" >&2
exit_usage
fi
;;
esac
shift
done
if [ -z "$arch" -o -z "$version" ]; then
exit_usage
fi
mkdir -p $arch
# Set our root directory (but don't create it yet)
root=$arch/steam-root
check_create()
{
if [ ! -f "$arch/$distribution-base.tgz" ]; then
echo "Missing $arch/$distribution-base.tgz, creating..."
sleep 1
return 0
fi
if [ ! -d "$root" ]; then
echo "Missing $root, creating..."
sleep 1
return 0
fi
if [ "$actions" ]; then
case "$actions" in
*--create*)
return 0;;
*)
return 1;;
esac
fi
# Default to not create unless we need to
return 1
}
action_create()
{
# Create the initial bootstrap
bootstrap_archive=$arch/$distribution-base.tgz
if [ ! -f $bootstrap_archive ]; then
if [ "$arch" = "$host_arch" ]; then
pbuilder_archive="$distribution-base.tgz"
else
pbuilder_archive="$distribution-$arch-base.tgz"
fi
if [ ! -f $HOME/pbuilder/$pbuilder_archive ]; then
pbuilder-dist $distribution $arch create
fi
cp $HOME/pbuilder/$pbuilder_archive $bootstrap_archive || exit 2
fi
# Create our chroot directory
rm -rf $root
mkdir -p $root
# Unpack it into our chroot directory
tar zxf $bootstrap_archive --exclude=dev -C $root
mkdir $root/dev
}
mount_chroot()
{
sudo mount -o bind /dev $root/dev
sudo mount -o bind /dev/pts $root/dev/pts
sudo mount -o bind /sys $root/sys
sudo mount -o bind /proc $root/proc
}
unmount_chroot()
{
sudo umount $root/dev/pts
sudo umount $root/dev
sudo umount $root/sys
sudo umount $root/proc
}
unmount_exit()
{
unmount_chroot
exit 2
}
check_update()
{
if [ "$actions" ]; then
case "$actions" in
*--update*)
return 0;;
*)
return 1;;
esac
fi
# Default to always update
return 0
}
action_update()
{
# Copy in initial content
cp -av content/* $root/
# Copy changelog
cp -v CHANGES $root/
# If sudo doesn't exist, we'll emulate it with fakeroot
# This is because we don't want the chroot environment to require root
# permissions for anything, in case normal users want to use it.
if [ ! -e $root/usr/bin/sudo ]; then
ln -s fakeroot $root/usr/bin/sudo
fi
# Set up proxy environment
fgrep -v proxy $root/etc/environment >/tmp/environment_head
fgrep proxy /etc/environment >/tmp/environment_tail
cat /tmp/environment_head /tmp/environment_tail >$root/etc/environment
# Run the update script in the chroot environment
trap unmount_exit INT TERM
mount_chroot
sudo chroot $root /packages/update.sh
unmount_chroot
trap '' INT TERM
# Change ownership to $USER so we can pack it up
sudo chown -R $USER $root
}
check_shell()
{
if [ "$actions" ]; then
case "$actions" in
*--shell*)
return 0;;
*)
return 1;;
esac
fi
# Default not to run the shell
return 1
}
action_shell()
{
# Run a shell in the chroot environment
mount_chroot
sudo chroot $root
unmount_chroot
# Change ownership to $USER so we can pack it up
sudo chown -R $USER $root
}
check_archive()
{
if [ "$actions" ]; then
case "$actions" in
*--archive*)
return 0;;
*)
return 1;;
esac
fi
# Default to always archive
return 0
}
action_archive()
{
# Back up completed environment
echo "Archiving steam-root..."
(cd $arch && tar zcf ../steam-root-$version-$arch.tgz steam-root)
ls -l steam-root-$version-$arch.tgz
}
if check_create; then
action_create
fi
if check_update; then
action_update
fi
if check_shell; then
action_shell
fi
if check_archive; then
action_archive
fi