-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathexample-node-dump.yaml
1989 lines (1676 loc) · 49.7 KB
/
example-node-dump.yaml
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[I] 04:45:45: --- &id177 !ruby/object:Chef::Node
attribute: !map:Mash
gem_server: !map:Mash
rf_virtual_host_alias: rubyforge
directory: /srv/gems
virtual_host_name: gems.compute-1.internal
rf_directory: /srv/rubyforge
virtual_host_alias: gems
rf_virtual_host_name: rubyforge.compute-1.internal
languages: &id112 !map:Mash
java: !map:Mash
hotspot: !map:Mash
name: Java HotSpot(TM) Client VM
build: 17.1-b03, mixed mode
runtime: !map:Mash
name: Java(TM) SE Runtime Environment
build: 1.6.0_22-b04
version: 1.6.0_22
perl: !map:Mash
version: 5.10.1
archname: i686-linux-gnu-thread-multi
python: !map:Mash
version: 2.6.6
builddate: Sep 15 2010, 15:52:39
ruby: !map:Mash
target_os: linux
bin_dir: /usr/bin
host_vendor: pc
target_vendor: pc
target_cpu: i686
ruby_bin: /usr/bin/ruby1.8
version: 1.8.7
host_os: linux-gnu
release_date: "2010-06-23"
host: i686-pc-linux-gnu
target: i686-pc-linux-gnu
host_cpu: i686
gems_dir: /usr/lib/ruby/gems/1.8
platform: i686-linux
filesystem: &id113 !map:Mash
/dev/sda1: !map:Mash
kb_size: "10321208"
kb_available: "8464524"
mount_options:
- rw
fs_type: ext3
mount: /
percent_used: 14%
kb_used: "1332396"
none: !map:Mash
kb_size: "10321208"
kb_available: "8464524"
mount_options:
- rw
- relatime
fs_type: debugfs
mount: /var/lib/ureadahead/debugfs
percent_used: 14%
kb_used: "1332396"
fusectl: !map:Mash
mount_options:
- rw
fs_type: fusectl
mount: /sys/fs/fuse/connections
dynomite: !map:Mash
data_dir: /var/db/dynomite
num_nodes: 1
web_port: 1180
master: false
join_node: node
node_name: domU-12-31-39-14-C4-4E
ascii_port: 11221
cluster_name: dynomite
thrift_port: 11222
openldap: !map:Mash
rootpw:
auth_binddn: ou=people,dc=compute-1,dc=internal
dir: /etc/ldap
run_dir: /var/run/slapd
module_dir: /usr/lib/ldap
cafile: /etc/ldap/ssl/ca.crt
server: ldap.compute-1.internal
ssl_dir: /etc/ldap/ssl
auth_type: openldap
auth_url: ldap://ldap.compute-1.internal/ou=people,dc=compute-1,dc=internal?uid?sub?(objecctClass=*)
basedn: dc=compute-1,dc=internal
slapd_type:
auth_bindpw:
bootstrap: !map:Mash
chef: !map:Mash
client_splay: "20"
webui_enabled: false
umask: 18
cache_path: /srv/chef/cache
client_interval: "1800"
serve_path: /srv/chef
url_type: http
server_ssl_req: /C=US/ST=Several/L=Locality/O=Example/OU=Operations/CN=chef.compute-1.internal/emailAddress=ops@compute-1.internal
webui_admin_password: Tnv_NwDiczrW_PAeYnou
init_style: runit
validation_client_name: chef-validator
client_version: 0.8.16.1
webui_port: "4040"
run_path: /var/run/chef
path: /srv/chef
server_fqdn: chef.compute-1.internal
indexer_log: STDOUT
server_version: 0.8.16.1
client_log: STDOUT
log_dir: /var/log/chef
server_port: "4000"
server_log: STDOUT
nagios: !map:Mash
cache_dir: /var/cache/nagios3
interval_length: 1
dir: /etc/nagios3
sysadmin_email: root@localhost
checks: !map:Mash
memory: !map:Mash
critical: 150
warning: 250
smtp_host: ""
load: !map:Mash
critical: "30,20,10"
warning: "15,10,5"
default_host: !map:Mash
max_check_attempts: 1
notification_interval: 300
retry_interval: 15
check_interval: 15
templates: !map:Mash {}
default_service: !map:Mash
max_check_attempts: 3
notification_interval: 1200
retry_interval: 15
check_interval: 60
docroot: /usr/share/nagios3/htdocs
sysadmin_sms_email: root@localhost
default_contact_groups:
- admins
log_dir: /var/log/nagios3
state_dir: /var/lib/nagios3
check_external_commands: true
config_subdir: conf.d
notifications_enabled: 0
glassfish: !map:Mash
PASSWORD: ""
ACCEPT_LICENSE: "0"
USERNAME: ""
COUNTRY_DROP_DOWN: ""
REENTERPASSWORD: ""
ADMIN_PASSWORD: adminadmin
SKIP_REGISTRATION: SKIP_REGISTRATION
LASTNAME: ""
LOGIN_MODE: "true"
PROXY_HOST: ""
USE_EXISTINGACCT: USE_EXISTINGACCT
COUNTRY: ""
DUMMY_PROP: ""
ANONYMOUS: ANONYMOUS
HTTP_PORT: "8081"
INSTALL_HOME: /opt/glassfishv3-prelude
FIRSTNAME: ""
NON_ANONYMOUS: NON_ANONYMOUS
BOOTSTRAP_UPDATETOOL: "false"
systemuser: glassfish
USERPASSWORD: ""
COMPANYNAME: ""
EMAIL: ""
systemgroup: glassfish
CREATE_NEWACCT: CREATE_NEWACCT
ADMIN_USER: admin
PROXY_PORT: ""
fetch_url: http://download.java.net/glassfish/v3-prelude/promoted/glassfish-v3-prelude-b28f-unix.sh
ADMIN_PORT: "4848"
ALLOW_UPDATE_CHECK: "false"
network: &id119 !map:Mash
default_interface: eth0
interfaces: !map:Mash
lo: !map:Mash
flags:
- UP
- LOOPBACK
- RUNNING
addresses: !map:Mash
"::1": !map:Mash
scope: Node
prefixlen: "128"
family: inet6
127.0.0.1: !map:Mash
netmask: 255.0.0.0
family: inet
mtu: "16436"
encapsulation: Loopback
eth0: !map:Mash
flags:
- UP
- BROADCAST
- RUNNING
- MULTICAST
number: "0"
addresses: !map:Mash
12:31:39:14:c4:4e: !map:Mash
family: lladdr
fe80::1031:39ff:fe14:c44e: !map:Mash
scope: Link
prefixlen: "64"
family: inet6
10.206.199.188: !map:Mash
netmask: 255.255.254.0
broadcast: 10.206.199.255
family: inet
mtu: "1500"
type: eth
arp: !map:Mash
10.206.198.1: fe:ff:ff:ff:ff:ff
encapsulation: Ethernet
erlang: !map:Mash
gui_tools: false
tags: []
nginx: !map:Mash
gzip_types:
- text/plain
- text/html
- text/css
- application/x-javascript
- text/xml
- application/xml
- application/xml+rss
- text/javascript
worker_connections: 2048
dir: /etc/nginx
binary: /usr/sbin/nginx
configure_flags:
- --prefix=/opt/nginx-0.7.67
- --conf-path=/etc/nginx/nginx.conf
- --with-http_ssl_module
- --with-http_gzip_static_module
server_names_hash_bucket_size: 64
gzip_comp_level: "2"
version: 0.7.67
gzip_proxied: any
src_binary: /opt/nginx-0.7.67/sbin/nginx
gzip: "on"
gzip_http_version: "1.0"
worker_processes: 1
install_path: /opt/nginx-0.7.67
log_dir: /var/log/nginx
user: www-data
keepalive: "on"
keepalive_timeout: 65
mysql: !map:Mash
ebs_vol_dev: /dev/sdi
ebs_vol_size: 50
server_debian_password: GVBZxg8uM1di1xPreVwp
datadir: /var/lib/mysql
ec2_path: /mnt/mysql
server_repl_password: icek8NZ6AAMhGy4Jujd9
tunable: !map:Mash
key_buffer: 250M
back_log: "128"
net_write_timeout: "30"
max_connections: "800"
table_cache: "128"
net_read_timeout: "30"
wait_timeout: "180"
max_heap_table_size: 32M
bind_address: 10.206.199.188
server_root_password: nHI8pM49I8vhP1PJCe3K
tomcat6: !map:Mash
temp: /var/tmp/tomcat6
ssl_port: 8433
java_opts: ""
stop: /etc/init.d/tomcat6 stop
dir: /etc/tomcat6
port: 8080
conf: /etc/tomcat6
manager_password: manager
start: /etc/init.d/tomcat6 start
webapps: /srv/tomcat6/webapps
version: 6.0.18
with_native: false
restart: /etc/init.d/tomcat6 restart
logs: /var/log/tomcat6
webapp_base_dir: /srv/tomcat6/
java_home: /usr/lib/jvm/java
permgen_min_free_in_mb: 24
home: /usr/share/tomcat6
user: tomcat
manager_dir: /usr/share/tomcat6/webapps/manager
manager_user: manager
activemq: !map:Mash
version: 5.3.2
mirror: http://mirrors.ibiblio.org/pub/mirrors
hostname: domU-12-31-39-14-C4-4E
ohai_time: 1290487541.08999
chef: !map:Mash
doc_root: /usr/lib/ruby/gems/1.8/gems/chef-server-webui-0.8.16.1/public
umask: "0022"
client_splay: "20"
webui_enabled: false
server_url: http://chef.compute-1.internal:4000
cache_path: /srv/chef/cache
url_type: http
serve_path: /srv/chef
client_interval: "1800"
solr_heap_size: 256M
init_style: runit
backup_path: /srv/chef/backup
server_ssl_req: /C=US/ST=Several/L=Locality/O=Example/OU=Operations/CN=chef.compute-1.internal/emailAddress=ops@chef.compute-1.internal
validation_client_name: chef-validator
client_version: 0.8.16.1
webui_port: "4040"
path: /srv/chef
run_path: /srv/chef/run
server_proxy: !map:Mash
css_expire_hours: "120"
js_expire_hours: "24"
server_version: 0.8.16.1
server_fqdn: chef.compute-1.internal
log_dir: /var/log/chef
server_port: "4000"
jira: !map:Mash
run_user: www-data
virtual_host_name: jira.compute-1.internal
database_host: localhost
virtual_host_alias: jira.compute-1.internal
version: enterprise-3.13.1
database: mysql
database_user: jira
install_path: /srv/jira
database_password: change_me
idletime_seconds: 21612
runit: !map:Mash
sv_bin: /usr/bin/sv
service_dir: /etc/service
sv_dir: /etc/sv
php: !map:Mash
db_app_passwd: ""
server_name: myserver
modules_list: []
code: !map:Mash
destination: /home/webapp/myapp
branch: master
url: ""
credentials: ""
app_user: www-data
db_dns_name: ""
package_dependencies:
- php5
- php5-mysql
- php-pear
- libapache2-mod-php5
db_adapter: mysql
application_port: "8000"
application_name: myapp
db_app_user: ""
db_schema_name: ""
db_dumpfile_path: ""
module_dependencies:
- proxy_http
- php5
wordpress: !map:Mash
keys: !map:Mash
auth: Nr2l6EmqZPA_DFbLSbAC
logged_in: K0J515N_cnWgreRLE0gq
nonce: NkJlRmUy4GFUqqbMYw33
secure_auth: ERRp4RHvoKOHRZxp9E28
dir: /var/www/wordpress
checksum: 7342627f4a3dca44886c5aca6834cc88671dbd3aa2760182d2fcb9a330807ce1
version: 2.9.2
db: !map:Mash
database: wordpressdb
password: tBtTuoLQmsdTqIVCkQ92
user: wordpressuser
kernel: &id130 !map:Mash
modules: !map:Mash {}
machine: i686
name: Linux
os: GNU/Linux
version: "#35-Ubuntu SMP Sat Oct 16 23:57:40 UTC 2010"
release: 2.6.35-22-virtual
ec2opts: !map:Mash
lvm: !map:Mash
ephemeral_mountpoint: /mnt
ephemeral_logical_volume: store
use_ephemeral: true
ephemeral_devices: !map:Mash
m1.small:
- /dev/sda2
m1.xlarge:
- /dev/sdb
- /dev/sdc
- /dev/sdd
- /dev/sde
m1.large:
- /dev/sdb
- /dev/sdc
ephemeral_volume_group: ephemeral
radiant: !map:Mash
migrate: false
branch: HEAD
action: nothing
migrate_command: rake db:migrate
revision: HEAD
environment: production
edge: false
uptime_seconds: 10958
djbdns: !map:Mash
public_dnscache_ipaddress: 10.206.199.188
tinydns_internal_resolved_domain: compute-1.internal
dnscache_uid: 9997
dnslog_uid: 9998
bin_dir: /usr/local/bin
tinydns_ipaddress: 127.0.0.1
public_dnscache_allowed_networks:
- "10.206"
tinydns_uid: 9999
tinydns_internal_ipaddress: 127.0.0.1
axfrdns_uid: 9996
axfrdns_ipaddress: 127.0.0.1
passenger_enterprise: !map:Mash
root_path: /opt/ruby-enterprise/lib/ruby/gems/1.8/gems/passenger-2.2.15
module_path: /opt/ruby-enterprise/lib/ruby/gems/1.8/gems/passenger-2.2.15/ext/apache2/mod_passenger.so
version: 2.2.15
idletime: 6 hours 00 minutes 12 seconds
command: &id135 !map:Mash
ps: ps -ef
db_mysql: !map:Mash
init_timeout: "1200"
admin_password:
tmpdir: /tmp
server_id: 1290477999
log_bin: /mnt/mysql-binlogs/mysql-bin
log: log = /var/log/mysql.log
admin_user:
datadir_relocate: /mnt/mysql
datadir: /var/lib/mysql
log_error: log_error = /var/log/mysql.err
tunable: !map:Mash
innodb_buffer_pool_size: 10M
sort_buffer_size: 128K
key_buffer: 16M
query_cache_size: 1M
read_buffer_size: 128K
back_log: "128"
thread_cache_size: "50"
myisamchk: !map:Mash
sort_buffer_size: 16M
key_buffer: 16M
net_write_timeout: "30"
read_rnd_buffer_size: 256K
max_connections: "800"
net_buffer_length: 2K
table_cache: "16"
net_read_timeout: "30"
isamchk: !map:Mash
sort_buffer_size: 16M
key_buffer: 16M
log_slow_queries: ""
innodb_additional_mem_pool_size: 1M
wait_timeout: "28800"
myisam_sort_buffer_size: 2M
long_query_time: ""
expire_logs_days: "10"
max_heap_table_size: 32M
server_usage: dedicated
log_bin_enabled: true
packages_uninstall: apparmor
kill_bug_mysqld_safe: true
basedir: /usr
bind_address: 10.206.199.188
packages_install:
- mysql-server-5.1
- tofrodos
socket: /var/run/mysqld/mysqld.sock
ts3: !map:Mash
arch: x86
url: http://ftp.4players.de/pub/hosted/ts3/releases/beta-25/teamspeak3-server_linux-x86-.tar.gz
version: 3.0.0-beta25
os_version: 2.6.35-22-virtual
passenger: !map:Mash
root_path: /usr/lib/ruby/gems/1.8/gems/passenger-2.2.15
module_path: /usr/lib/ruby/gems/1.8/gems/passenger-2.2.15/ext/apache2/mod_passenger.so
version: 2.2.15
virtualization: &id139 !map:Mash {}
packages: !map:Mash
dist_only: false
keys: &id141 !map:Mash
ssh: !map:Mash
host_dsa_public: AAAAB3NzaC1kc3MAAACBAL336iIT7yR/T42kaXHlCF1qx02tL/q/d4CPiVTpo1GEGBvdaklEj8iNsHzCnvCNEqzQ2WWXSOAIuOYvjx4bn4kjMbqI6TZwGSZzR0CQ+BzZE3G1nLkHuR5Js4LZZaHy+6JENBWCjarWvaSE6H+6OFuQb9HT/WAlZaoiZVc0H8TFAAAAFQCjZxme2Uf8YQIdJ46NAYBUnPC5NwAAAIB7dRDiO9XuC3I1WhEvLmDTXzCvap4+p0SNcaTvRNl5bOziua0oLWLIu+KwOhwMpCNPzO+IqVBRFs+MwZEi7uAqFzwT2HeP2jYfGSju2SdYn2aq9CdUWYOnXv34x9SOdhoEyt4RzTfSm2OqZfnKAzdawHVWCUrIXDj/n1SYYzBR8gAAAIA8BPZEV8zVscc5UboP/JshGsNwQtiTbOMGKzQdwe6gYmztzHq1/NmTwbSxZnUWKtsO1XBx+u+fv+KXzK2hnfF49/c+u7gpx/ofJC+KMvmBGmYIHZRz8qIb4anU7gpVVdbKpCMfKdJ7vVxio6LdDUZ/UmgtQfgLdgJ2tvZUg0EOAg==
host_rsa_public: AAAAB3NzaC1yc2EAAAADAQABAAABAQCncDANgurZjZEygcyNvcLpV9QhyyLgotq9gMz6C053NwJaUosOTTiBGWvx6JAt+I93NVn3alvvCE/pGhY0uwLCf4WR+L+aEIzg4AiO8S39NSiBOQomCzxLVumte7eGOux2gdBj9ELGRYccy1EtcWEnxFy++fihyFltkvGQu1F4w2wx9QnyvayXXmB4xnLbmW0sK8onplD6rdalyH+GV1D2ENar4SnsQlFADwL0EcugeZOjOGYmCU1PT8CyEe0OOutuF1zVNPtbyuQOCjFUO1OPEVrB5JTtTz0RC5Tn2rfVHHo5GKpLg0dTxnHFQgZDM6MGb0Axz0QFZeq4pKeBFUOb
rs_utils: !map:Mash
collectd_config: /etc/collectd/collectd.conf
process_list: ""
collectd_lib: /usr/lib/collectd
private_ssh_key: ""
mysql_binary_backup_file: /var/run/mysql-binary-backup
timezone: UTC
logrotate_config: /etc/logrotate.d/syslog-ng
hostname: ""
collectd_plugin_dir: /etc/collectd/conf
macaddress: 12:31:39:14:c4:4e
uptime: 3 hours 02 minutes 38 seconds
couch_db: !map:Mash
src_mirror: http://archive.apache.org/dist/couchdb/0.9.1/apache-couchdb-0.9.1.tar.gz
src_version: 0.9.1
src_checksum: b16f3a10b406d01552893d356cdbf7f429209f938ae7d3aa589ee704df8cb4d2
authorization: !map:Mash
sudo: !map:Mash
groups: []
users: []
lsb: &id145 !map:Mash
codename: maverick
id: Ubuntu
description: "\"Ubuntu 10.10\""
release: "10.10"
openvpn: !map:Mash
local: 10.206.199.188
netmask: 255.255.0.0
type: server
subnet: 10.8.0.0
proto: udp
cloud: &id148 !map:Mash
public_ips:
- 50.16.7.24
private_ips:
- 10.206.199.188
provider: ec2
kickstart: !map:Mash
rootpw:
virtual_host_name: build.compute-1.internal
postgresql: !map:Mash
dir: /etc/postgresql/8.4/main
version: "8.4"
ruby_enterprise: !map:Mash
ruby_bin: /opt/ruby-enterprise/bin/ruby
url: http://rubyforge.org/frs/download.php/71096/ruby-enterprise-1.8.7-2010.02
version: 1.8.7-2010.02
install_path: /opt/ruby-enterprise
gems_dir: /opt/ruby-enterprise/lib/ruby/gems/1.8
apache: !map:Mash
traceenable: "On"
allowed_openids: []
dir: /etc/apache2
binary: /usr/sbin/apache2
timeout: 300
keepaliverequests: 100
contact: ops@example.com
servertokens: Prod
prefork: !map:Mash
maxspareservers: 32
minspareservers: 16
serverlimit: 400
startservers: 16
maxclients: 400
maxrequestsperchild: 10000
listen_ports:
- "80"
- "443"
extended_status: "On"
keepalivetimeout: 5
serversignature: "On"
log_dir: /var/log/apache2
user: www-data
icondir: /usr/share/apache2/icons
keepalive: "On"
worker: !map:Mash
maxsparethreads: 192
startservers: 4
minsparethreads: 64
maxclients: 1024
maxrequestsperchild: 0
threadsperchild: 64
mpm: prefork
fqdn: domU-12-31-39-14-C4-4E.compute-1.internal
platform: ubuntu
sbuild: !map:Mash
pgp_options: -us -uc
lv_size: 5G
key_id: ""
snapshot_size: 4G
mailto: root
maintainer_name: ""
etc: &id153 !map:Mash
group: !map:Mash
utmp: !map:Mash
gid: 43
members: []
dip: !map:Mash
gid: 30
members: []
audio: !map:Mash
gid: 29
members: []
uucp: !map:Mash
gid: 10
members: []
syslog: !map:Mash
gid: 103
members: []
nogroup: !map:Mash
gid: 65534
members: []
games: !map:Mash
gid: 60
members: []
list: !map:Mash
gid: 38
members: []
kmem: !map:Mash
gid: 15
members: []
mysql: !map:Mash
gid: 111
members: []
shadow: !map:Mash
gid: 42
members: []
sudo: !map:Mash
gid: 27
members: []
sys: !map:Mash
gid: 3
members: []
tty: !map:Mash
gid: 5
members: []
admin: !map:Mash
gid: 110
members: []
libuuid: !map:Mash
gid: 101
members: []
staff: !map:Mash
gid: 50
members: []
src: !map:Mash
gid: 40
members: []
irc: !map:Mash
gid: 39
members: []
backup: !map:Mash
gid: 34
members: []
www-data: !map:Mash
gid: 33
members: []
tape: !map:Mash
gid: 26
members: []
man: !map:Mash
gid: 12
members: []
lp: !map:Mash
gid: 7
members: []
fuse: !map:Mash
gid: 104
members: []
proxy: !map:Mash
gid: 13
members: []
mail: !map:Mash
gid: 8
members: []
postdrop: !map:Mash
gid: 109
members: []
operator: !map:Mash
gid: 37
members: []
cdrom: !map:Mash
gid: 24
members: []
root: !map:Mash
gid: 0
members: []
plugdev: !map:Mash
gid: 46
members: []
sasl: !map:Mash
gid: 45
members: []
video: !map:Mash
gid: 44
members: []
fax: !map:Mash
gid: 21
members: []
bin: !map:Mash
gid: 2
members: []
ssh: !map:Mash
gid: 106
members: []
users: !map:Mash
gid: 100
members: []
news: !map:Mash
gid: 9
members: []
daemon: !map:Mash
gid: 1
members: []
ssl-cert: !map:Mash
gid: 107
members: []
mlocate: !map:Mash
gid: 105
members: []
crontab: !map:Mash
gid: 102
members: []
gnats: !map:Mash
gid: 41
members: []
floppy: !map:Mash
gid: 25
members: []
voice: !map:Mash
gid: 22
members: []
disk: !map:Mash
gid: 6
members: []
postfix: !map:Mash
gid: 108
members: []
dialout: !map:Mash
gid: 20
members: []
adm: !map:Mash
gid: 4
members: []
passwd: !map:Mash
uucp: !map:Mash
gecos: uucp
gid: 10
dir: /var/spool/uucp
uid: 10
shell: /bin/sh
syslog: !map:Mash
gecos: ""
gid: 103
dir: /home/syslog
uid: 101
shell: /bin/false
list: !map:Mash
gecos: Mailing List Manager
gid: 38
dir: /var/list
uid: 38
shell: /bin/sh
games: !map:Mash
gecos: games
gid: 60
dir: /usr/games
uid: 5
shell: /bin/sh
mysql: !map:Mash
gecos: MySQL Server,,,
gid: 111
dir: /nonexistent
uid: 105
shell: /bin/false
sys: !map:Mash
gecos: sys
gid: 3
dir: /dev
uid: 3
shell: /bin/sh
nobody: !map:Mash
gecos: nobody
gid: 65534
dir: /nonexistent
uid: 65534
shell: /bin/sh
libuuid: !map:Mash
gecos: ""
gid: 101
dir: /var/lib/libuuid
uid: 100
shell: /bin/sh
irc: !map:Mash
gecos: ircd
gid: 39
dir: /var/run/ircd
uid: 39
shell: /bin/sh
backup: !map:Mash
gecos: backup
gid: 34
dir: /var/backups
uid: 34
shell: /bin/sh
www-data: !map:Mash
gecos: www-data
gid: 33
dir: /var/www
uid: 33
shell: /bin/sh
lp: !map:Mash
gecos: lp
gid: 7
dir: /var/spool/lpd
uid: 7
shell: /bin/sh
man: !map:Mash
gecos: man
gid: 12
dir: /var/cache/man
uid: 6
shell: /bin/sh
proxy: !map:Mash
gecos: proxy
gid: 13
dir: /bin
uid: 13
shell: /bin/sh
mail: !map:Mash
gecos: mail
gid: 8
dir: /var/mail
uid: 8
shell: /bin/sh
sync: !map:Mash
gecos: sync
gid: 65534
dir: /bin
uid: 4
shell: /bin/sync
sshd: !map:Mash
gecos: ""
gid: 65534
dir: /var/run/sshd
uid: 103
shell: /usr/sbin/nologin
root: !map:Mash
gecos: root
gid: 0
dir: /root
uid: 0
shell: /bin/bash
rightscale: !map:Mash
gecos: ""
gid: 65534
dir: /home/rightscale
uid: 104
shell: /bin/false
bin: !map:Mash
gecos: bin
gid: 2
dir: /bin
uid: 2
shell: /bin/sh
news: !map:Mash
gecos: news
gid: 9
dir: /var/spool/news
uid: 9
shell: /bin/sh
daemon: !map:Mash
gecos: daemon
gid: 1
dir: /usr/sbin
uid: 1
shell: /bin/sh
gnats: !map:Mash
gecos: Gnats Bug-Reporting System (admin)
gid: 41
dir: /var/lib/gnats
uid: 41
shell: /bin/sh
postfix: !map:Mash
gecos: ""
gid: 108
dir: /var/spool/postfix
uid: 102
shell: /bin/false
cpu: &id154 !map:Mash
real: 0
total: 1
"0": !map:Mash
flags:
- fpu
- tsc
- msr
- pae
- cx8
- cmov
- pat
- pse36
- clflush
- dts
- mmx
- fxsr
- sse
- sse2
- ss
- ht
- pbe
- nx
- lm
- constant_tsc
- up
- arch_perfmon
- pebs
- bts
- aperfmperf
- pni
- dtes64
- monitor
- ds_cpl
- vmx
- est
- tm2
- ssse3
- cx16
- xtpr
- pdcm
- dca
- sse4_1
- lahf_lm
- tpr_shadow
- vnmi
- flexpriority
model: "23"
***** RECORD TRUNCATED ****
calculated: false
default: server
choice: []
type: string
recipes: []
display_name: OpenVPN Type
description: Server or server-bridge