-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.sh
executable file
·44 lines (36 loc) · 1.48 KB
/
config.sh
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
#!/bin/bash
# Clusterings.
# Which method of HPC do we use?
# Values: mpi | pvm
# Or both, obviously.
CLUSTER="mpi pvm"
# Cluster status monitor.
# Only sinfo for now. Patches for Ganglia or Nagios or whatever welcome.
# Leave blank for none.
MONITOR=sinfo
# Window manager.
# Suggested values: wmii | icewm
# Warning: if you select wmii, we'll build it from scratch, which can take a
# minute and requires that suckless.org not be down.
# Leaving it blank will also neglect to install xorg at all.
WM=icewm
# Additional Debian packages you want to install.
# You can also install them manually before running the script
EXTRAPACKAGES=
# Kernel version to use. Has to be a 2.6, with a minor version supported by
# aufs2.1, which is basically 31 and over.
# Default: 2.6.32
KERNEL=2.6.32
# Kernel configuration file. The default Squeeze kernel is 2.6.32.
# The specific options we need are adjusted automatically.
KERNEL_CONF=/boot/config-$(uname -r)
# Location of the aufs git repository.
# If you foresee building a lot of different versions of ClusterDebian and don't
# want to have to wait an hour while it pulls the repository over the Internet
# every time, consider hosting a local mirror somewhere and changing this.
# Otherwise, probably best not to touch it.
AUFS_GIT="git://git.c3sl.ufpr.br/aufs/aufs2-2.6.git"
# Network configuration.
NETWORK=192.168.1.0 # Subnet mask is /24. No exceptions.
GATEWAY=192.168.1.254
DNS="8.8.8.8 8.8.4.4" # Google's public DNS (either way, space-separated)