svn keywords, and url in specfile
[nodeconfig.git] / db-config.d / 030-conf_files_kernel
1 # -*-python-*-
2 #################### conf files
3
4 conf_files = [
5
6 # linux-2.6
7     # Kernel sysctl parameters
8     {'enabled': True,
9      'source': 'PlanetLabConf/sysctl.conf',
10      'dest': '/etc/sysctl.conf',
11      'file_permissions': '644',
12      'file_owner': 'root',
13      'file_group': 'root',
14      'preinstall_cmd': '',
15      'postinstall_cmd': '/sbin/sysctl -e -p /etc/sysctl.conf',
16      'error_cmd': '',
17      'ignore_cmd_errors': False,
18      'always_update': False},
19
20     ]
21
22 for conf_file in conf_files:
23         SetConfFile(conf_file)