forked from sasi5a1/havate-openstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage_list.txt
More file actions
1142 lines (1142 loc) · 15.3 KB
/
package_list.txt
File metadata and controls
1142 lines (1142 loc) · 15.3 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
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
accountsservice
acl
acpid
adduser
alembic
apache2
apache2.2-bin
apache2.2-common
apache2-mpm-prefork
apache2-utils
apparmor
apport
apport-symptoms
apt
apt-cacher-ng
aptitude
apt-transport-https
apt-utils
apt-xapian-index
at
augeas-lenses
augeas-tools
base-files
base-passwd
bash
bash-completion
bc
bind9-host
binutils
bridge-utils
bsd-mailx
bsdmainutils
bsdutils
btrfs-tools
build-essential
busybox-initramfs
busybox-static
byobu
bzip2
ca-certificates
ca-certificates-java
ceilometer-agent-central
ceilometer-agent-compute
ceilometer-api
ceilometer-collector
ceilometer-common
ceph
ceph-common
ceph-deploy
ceph-fs-common
ceph-mds
cgroup-lite
cinder-api
cinder-common
cinder-scheduler
cinder-volume
cloud-init
cloud-initramfs-growroot
cloud-initramfs-rescuevol
cloud-utils
cobbler
cobbler-common
cobbler-web
collectd
collectd-core
command-not-found
command-not-found-data
console-setup
coreutils
cpio
cpp
cpp-4.6
cpu-checker
crda
cron
cryptsetup
cryptsetup-bin
curl
dash
dbus
dbus-x11
dconf-gsettings-backend
dconf-service
debconf
debconf-i18n
debconf-utils
debianutils
diffutils
discover
discover-data
distro-info
distro-info-data
dkms
dmidecode
dmsetup
dnsmasq
dnsmasq-base
dnsmasq-utils
dnsutils
dosfstools
dpkg
dpkg-dev
e2fslibs
e2fsprogs
ebtables
ed
eject
erlang-asn1
erlang-base
erlang-corba
erlang-crypto
erlang-dev
erlang-diameter
erlang-docbuilder
erlang-edoc
erlang-erl-docgen
erlang-eunit
erlang-ic
erlang-inets
erlang-inviso
erlang-mnesia
erlang-nox
erlang-odbc
erlang-os-mon
erlang-parsetools
erlang-percept
erlang-public-key
erlang-runtime-tools
erlang-snmp
erlang-ssh
erlang-ssl
erlang-syntax-tools
erlang-tools
erlang-webtool
erlang-xmerl
euca2ools
facter
fakeroot
febootstrap
fence-agents
file
findutils
fontconfig
fontconfig-config
fonts-ubuntu-font-family-console
friendly-recovery
ftp
fuse
fuse-utils
g++
g++-4.6
galera
gawk
gcc
gcc-4.6
gcc-4.6-base
gconf2
gconf2-common
gconf-service
gconf-service-backend
gdisk
genisoimage
geoip-database
gettext-base
gir1.2-glib-2.0
gir1.2-gudev-1.0
git
git-man
glance
glance-api
glance-common
glance-registry
gnupg
gnupg-agent
gpgv
graphite-carbon
graphite-web
grep
groff-base
grub2-common
grub-common
grub-gfxpayload-lists
grub-legacy-ec2
grub-pc
grub-pc-bin
gzip
haproxy
hardlink
hdparm
heat-api
heat-api-cfn
heat-api-cloudwatch
heat-common
heat-engine
hicolor-icon-theme
hiera
hostname
icedtea-6-jre-cacao
icedtea-6-jre-jamvm
ifupdown
info
initramfs-tools
initramfs-tools-bin
initscripts
insserv
installation-report
install-info
ipmitool
iproute
iptables
iputils-arping
iputils-ping
iputils-tracepath
ipvsadm
ipxe-qemu
irqbalance
isc-dhcp-client
isc-dhcp-common
iso-codes
iw
java-common
javascript-common
jfsutils
kbd
keepalived
keyboard-configuration
keystone
klibc-utils
kpartx
krb5-locales
landscape-client
landscape-common
language-pack-en
language-pack-en-base
language-pack-gnome-en
language-pack-gnome-en-base
language-selector-common
laptop-detect
less
libaccountsservice0
libacl1
libaio1
libalgorithm-diff-perl
libalgorithm-diff-xs-perl
libalgorithm-merge-perl
libapache2-mod-passenger
libapache2-mod-php5
libapache2-mod-python
libapache2-mod-wsgi
libapparmor1
libapr1
libaprutil1
libaprutil1-dbd-sqlite3
libaprutil1-ldap
libapt-inst1.4
libapt-pkg4.12
libarchive12
libasn1-8-heimdal
libasound2
libassuan0
libasyncns0
libatk1.0-0
libatk1.0-data
libattr1
libaudit0
libaugeas0
libaugeas-ruby
libaugeas-ruby1.8
libavahi-client3
libavahi-common3
libavahi-common-data
libbind9-80
libblas3gf
libblkid1
libbluetooth3
libboost1.46-dev
libboost-dev
libboost-filesystem1.46.1
libboost-iostreams1.46.1
libboost-program-options1.46.1
libboost-system1.46.1
libboost-thread1.46.1
libbrlapi0.5
libbsd0
libbz2-1.0
libc6
libc6-dev
libcaca0
libcairo2
libcairo-gobject2
libcanberra0
libcanberra-gtk3-0
libcanberra-gtk3-module
libcap2
libcap-ng0
libc-ares2
libc-bin
libc-dev-bin
libcephfs1
libclass-accessor-perl
libclass-isa-perl
libcomerr2
libcommon-sense-perl
libconfig8
libconfig-general-perl
libconfig-tiny-perl
libcrypto++9
libcrypt-passwdmd5-perl
libcryptsetup4
libcups2
libcurl3
libcurl3-gnutls
libcwidget3
libdatrie1
libdb5.1
libdbd-mysql-perl
libdbi1
libdbi-perl
libdbus-1-3
libdbus-glib-1-2
libdconf0
libdevmapper1.02.1
libdevmapper-event1.02.1
libdiscover2
libdns81
libdpkg-perl
libdrm2
libdrm-intel1
libdrm-nouveau1a
libdrm-radeon1
libedit2
libelf1
libencode-locale-perl
libept1.4.12
liberror-perl
libesmtp6
libev4
libevent-2.0-5
libexpat1
libexpat1-dev
libfdt1
libffi6
libfile-copy-recursive-perl
libfile-listing-perl
libflac8
libfont-afm-perl
libfontconfig1
libfontenc1
libfreetype6
libfribidi0
libfuse2
libgc1c2
libgcc1
libgconf-2-4
libgcrypt11
libgd2-noxpm
libgdbm3
libgdk-pixbuf2.0-0
libgdk-pixbuf2.0-common
libgeoip1
libgfortran3
libgirepository-1.0-1
libgl1-mesa-dri
libgl1-mesa-glx
libglapi-mesa
libglib2.0-0
libgmp10
libgnutls26
libgomp1
libgoogle-perftools4
libgpg-error0
libgpgme11
libgpm2
libgssapi3-heimdal
libgssapi-krb5-2
libgtk2.0-0
libgtk2.0-bin
libgtk2.0-common
libgtk-3-0
libgtk-3-bin
libgtk-3-common
libgudev-1.0-0
libguestfs0
libguestfs-perl
libguestfs-tools
libhcrypto4-heimdal
libheimbase1-heimdal
libheimntlm0-heimdal
libhivex0
libhtml-format-perl
libhtml-form-perl
libhtml-parser-perl
libhtml-tagset-perl
libhtml-template-perl
libhtml-tree-perl
libhttp-cookies-perl
libhttp-daemon-perl
libhttp-date-perl
libhttp-message-perl
libhttp-negotiate-perl
libhx509-5-heimdal
libibverbs1
libice6
libicu48
libidn11
libintl-perl
libio-socket-inet6-perl
libio-socket-ssl-perl
libio-string-perl
libisc83
libisccc80
libisccfg82
libiw30
libjasper1
libjpeg8
libjpeg-turbo8
libjs-excanvas
libjs-jquery
libjs-jquery-flot
libjson0
libjson-perl
libjson-ruby
libjson-xs-perl
libjs-prototype
libjs-scriptaculous
libjs-sphinxdoc
libjs-swfobject
libjs-underscore
libk5crypto3
libkeyutils1
libklibc
libkrb5-26-heimdal
libkrb5-3
libkrb5support0
liblapack3gf
libldap-2.4-2
libleveldb1
libllvm3.0
liblocale-gettext-perl
liblockfile1
liblockfile-bin
libltdl7
liblwp-mediatypes-perl
liblwp-protocol-https-perl
liblwres80
liblzma5
libmagic1
libmailtools-perl
libmath-calc-units-perl
libmemcached6
libmount1
libmpc2
libmpfr4
libmysqlclient18
libnagios-plugin-perl
libncurses5
libncursesw5
libnetcf1
libnet-daemon-perl
libnetfilter-conntrack3
libnet-http-perl
libnet-snmp-perl
libnet-ssleay-perl
libnet-telnet-perl
libnettle4
libnewt0.52
libnfnetlink0
libnih1
libnih-dbus1
libnl-3-200
libnl-genl-3-200
libnl-route-3-200
libnotify4
libnspr4
libnss3
libnss3-1d
libnuma1
libodbc1
libogg0
libopenipmi0
liboping0
libopts25
libp11-kit0
libpam0g
libpam-modules
libpam-modules-bin
libpam-runtime
libpango1.0-0
libparams-validate-perl
libparse-debianchangelog-perl
libparted0debian1
libpcap0.8
libpci3
libpciaccess0
libpcre3
libpcrecpp0
libpcsclite1
libperl5.14
libpipeline1
libpixman-1-0
libplrpc-perl
libplymouth2
libpng12-0
libpolkit-gobject-1-0
libpopt0
libpq5
libpth20
libpulse0
libpython2.7
libquadmath0
librack-ruby
libradius1
librados2
librbd1
librdmacm1
libreadline5
libreadline6
libroken18-heimdal
librrd4
librtmp0
libruby
libruby1.8
libsasl2-2
libsasl2-modules
libsctp1
libsdl1.2debian
libseccomp1
libselinux1
libsensors4
libsgutils2-2
libshadow-ruby1.8
libsigc++-2.0-0c2a
libsigsegv2
libslang2
libsm6
libsnappy1
libsndfile1
libsnmp15
libsnmp-base
libsocket6-perl
libspice-server1
libsqlite0
libsqlite3-0
libss2
libssl0.9.8
libssl1.0.0
libssl-dev
libssl-doc
libstdc++6
libstdc++6-4.6-dev
libstring-shellquote-perl
libsub-name-perl
libswitch-perl
libsysfs2
libsys-virt-perl
libtalloc2
libtasn1-3
libtcmalloc-minimal4
libtdb1
libterm-readkey-perl
libtext-charwidth-perl
libtext-iconv-perl
libtext-wrapi18n-perl
libthai0
libthai-data
libtidy-0.99-0
libtiff4
libtimedate-perl
libtinfo5
libtokyocabinet8
libtokyotyrant3
libudev0
libunwind8
libupsclient1
liburi-perl
libusb-0.1-4
libusb-1.0-0
libuuid1
libv8-3.14.5
libv8-3.7.12.22
libvirt0
libvirt-bin
libvorbis0a
libvorbisenc2
libvorbisfile3
libvte9
libvte-common
libwbclient0
libwind0-heimdal
libwin-hivex-perl
libwrap0
libwww-perl
libwww-robotrules-perl
libx11-6
libx11-data
libx11-xcb1
libx86-1
libxapian22
libxau6
libxaw7
libxcb1
libxcb-glx0
libxcb-render0
libxcb-shm0
libxcomposite1
libxcursor1
libxdamage1
libxdmcp6
libxen-4.1
libxenstore3.0
libxext6
libxfixes3
libxfont1
libxft2
libxi6
libxinerama1
libxkbfile1
libxml2
libxml2-utils
libxml-parser-perl
libxml-xpath-perl
libxmu6
libxmuu1
libxpm4
libxrandr2
libxrender1
libxslt1.1
libxt6
libxxf86vm1
libyajl1
libyaml-0-2
linux-firmware
linux-generic
linux-headers-3.2.0-51
linux-headers-3.2.0-51-virtual
linux-headers-3.2.0-58
linux-headers-3.2.0-58-generic
linux-headers-3.2.0-58-virtual
linux-headers-generic
linux-headers-virtual
linux-image-3.2.0-51-virtual
linux-image-3.2.0-58-generic
linux-image-3.2.0-58-virtual
linux-image-generic
linux-image-virtual
linux-libc-dev
linux-virtual
lksctp-tools
locales
lockfile-progs
login
logrotate
lsb-base
lsb-release
lshw
lsof
ltrace
lvm2
make
makedev
man-db
manpages
manpages-dev
mawk
memcached
memtest86+
mime-support
mlocate
module-init-tools
mongodb
mongodb-clients
mongodb-dev
mongodb-server
mount
mountall
msgpack-python
msr-tools
mtools
mtr-tiny
multiarch-support
mysql-client
mysql-client-5.5
mysql-client-core-5.5
mysql-common
mysql-server
mysql-server-5.5
mysql-server-core-5.5
mysql-server-wsrep
nagios3
nagios3-cgi
nagios3-common
nagios3-core
nagios3-doc
nagios-images
nagios-nrpe-plugin
nagios-nrpe-server
nagios-plugins
nagios-plugins-basic
nagios-plugins-standard
nano
ncurses-base
ncurses-bin
netbase
netcat-openbsd
net-tools
neutron-common
neutron-dhcp-agent
neutron-l3-agent
neutron-metadata-agent
neutron-plugin-openvswitch
neutron-plugin-openvswitch-agent
neutron-server
nodejs
node-less
notification-daemon
nova-api
nova-cert
nova-common
nova-compute
nova-compute-kvm
nova-compute-qemu
nova-conductor
nova-consoleauth
nova-novncproxy
nova-objectstore
nova-scheduler
novnc
ntfs-3g
ntfsprogs
ntp
ntpdate
open-iscsi
open-iscsi-utils
openjdk-6-jre-headless
openjdk-6-jre-lib
openssh-client
openssh-server
openssl
openstack-dashboard
openstack-dashboard-ubuntu-theme
openvswitch-common
openvswitch-datapath-dkms
openvswitch-switch
os-prober
parted
passwd
patch
pciutils
perl
perl-base
perl-modules
php5-cli
php5-common
pinentry-gtk2
plymouth
plymouth-theme-ubuntu-text
pm-utils
popularity-contest
postfix
postgresql-9.1
postgresql-client-9.1
postgresql-client-common
postgresql-common
powermgmt-base
powerwake
ppp
pppconfig
pppoeconf
procps
psmisc
puppet
puppet-apache
puppet-apt
puppet-apt-cacher-ng
puppet-augeas
puppet-boolean
puppet-catalog-diff
puppet-ceilometer
puppet-cephdeploy
puppet-cinder
puppet-cobbler
puppet-coe
puppet-coi
puppet-collectd
puppet-common
puppet-concat
puppetdb
puppetdb-terminus
puppet-dnsmasq
puppet-filemapper
puppet-firewall
puppet-galera
puppet-glance
puppet-graphite
puppet-haproxy
puppet-heat
puppet-horizon
puppet-inifile
puppet-keepalived
puppet-keystone
puppetmaster
puppetmaster-common
puppetmaster-passenger
puppet-memcached
puppet-mongodb
puppet-mysql
puppet-naginator
puppet-network
puppet-neutron
puppet-nova
puppet-ntp
puppet-openstack
puppet-openstack-ha
puppet-pip
puppet-postgresql
puppet-puppet
puppet-puppetdb
puppet-rabbitmq
puppet-rsync
puppet-scenario-node-terminus
puppet-ssh
puppet-stdlib
puppet-swift
puppet-sysctl
puppet-tempest
puppet-vcsrepo
puppet-vswitch
puppet-xinetd
python
python2.7
python2.7-dev
python2.7-minimal
python-amqp
python-amqplib
python-anyjson
python-appconf
python-apport
python-apt
python-apt-common
python-babel
python-beautifulsoup
python-boto
python-bson
python-bson-ext
python-cairo
python-carrot
python-ceilometer
python-ceilometerclient
python-ceph
python-chardet
python-cheetah
python-cinder
python-cinderclient
python-cliff
python-cliff-doc
python-cloudfiles
python-cmd2
python-cobbler
python-compressor
python-configobj
python-crypto
python-d2to1
python-daemon
python-dateutil
python-dbus
python-dbus-dev
python-debian
python-decorator
python-dev
python-dingus
python-distro-info
python-django
python-django-horizon
python-django-tagging
python-dnspython
python-dogpile.cache
python-dogpile.core
python-eventlet
python-extras
python-feedparser
python-fixtures
python-flask
python-formencode
python-gdbm
python-gflags
python-gi
python-glance
python-glanceclient
python-gnupginterface
python-greenlet
python-gridfs
python-happybase
python-heat
python-heatclient
python-httplib2
python-iso8601
python-itsdangerous
python-jinja2
python-json-patch
python-json-pointer
python-jsonschema
python-keyring
python-keystone
python-keystoneclient
python-kombu
python-launchpadlib
python-lazr.restfulclient
python-lazr.uri
python-ldap
python-lesscpy
python-libvirt
python-libxml2
python-lockfile
python-lxml
python-m2crypto
python-mako
python-markupsafe
python-memcache
python-migrate
python-mimeparse
python-minimal
python-mock
python-mysqldb
python-netaddr
python-netifaces
python-neutron
python-neutronclient
python-newt
python-nose
python-nova
python-novaclient
python-novnc
python-numpy
python-oauth
python-openid
python-openssl
python-openstack-auth
python-oslo.config
python-pam
python-paramiko
python-passlib
python-paste
python-pastedeploy
python-pastescript
python-pbr
python-pecan
python-pexpect
python-pip
python-pkg-resources
python-ply
python-prettytable
python-problem-report
python-pyasn1
python-pycryptopp
python-pycurl
python-pymongo
python-pymongo-ext
python-pyparsing
python-pyudev
python-qpid
python-requests
python-routes
python-scgi
python-sendfile
python-serial
python-setuptools
python-simplegeneric
python-simplejson
python-six
python-software-properties
python-sqlalchemy
python-sqlalchemy-ext
python-sqlite
python-stevedore
python-stompy
python-suds
python-support
python-swift
python-swiftclient
python-tempita
python-testtools
python-thrift
python-troveclient
python-twisted
python-twisted-bin
python-twisted-conch
python-twisted-core
python-twisted-lore
python-twisted-mail
python-twisted-names
python-twisted-news
python-twisted-runner
python-twisted-web
python-twisted-words
python-tz
python-urlgrabber
python-urllib3
python-utidylib
python-wadllib
python-warlock