Install Cobbler 2.6 under Ubuntu 16.04 LTS from Cobbler source – manual intallation

Author:

Real world output

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
root@srv:~# apt update
Hit:1 http://security.ubuntu.com/ubuntu xenial-security InRelease
Hit:2 http://us.archive.ubuntu.com/ubuntu xenial InRelease
Hit:3 http://us.archive.ubuntu.com/ubuntu xenial-updates InRelease              
Hit:4 http://us.archive.ubuntu.com/ubuntu xenial-backports InRelease            
Reading package lists... Done                         
Building dependency tree      
Reading state information... Done
All packages are up to date.
root@srv:~# apt install -y make git python-yaml python-cheetah python-netaddr python-simplejson libapache2-mod-wsgi python-django atftpd debmirror apache2 python-urlgrabber fence-agents isc-dhcp-server
Reading package lists... Done
Building dependency tree      
Reading state information... Done
git is already the newest version (1:2.7.4-0ubuntu1.6).
The following package was automatically installed and is no longer required:
  linux-signed-image-generic
Use 'sudo apt autoremove' to remove it.
The following additional packages will be installed:
  apache2-bin apache2-data apache2-utils ieee-data inetutils-inetd javascript-common libapr1 libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-ldap libauthen-sasl-perl
  libencode-locale-perl libfile-copy-recursive-perl libfile-listing-perl libfont-afm-perl libhtml-form-perl libhtml-format-perl libhtml-parser-perl libhtml-tagset-perl
  libhtml-tree-perl libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libio-html-perl libio-socket-ssl-perl
  libirs-export141 libisccfg-export140 libjs-jquery liblockfile-simple-perl liblog-agent-perl liblua5.1-0 liblwp-mediatypes-perl liblwp-protocol-https-perl
  libmailtools-perl libnet-http-perl libnet-libidn-perl libnet-smtp-ssl-perl libnet-ssleay-perl libnet-telnet-perl libpython-stdlib libpython2.7 libpython2.7-minimal
  libpython2.7-stdlib libsensors4 libsgutils2-2 libsnmp-base libsnmp30 libtimedate-perl liburi-perl libwww-perl libwww-robotrules-perl libyaml-0-2 python
  python-django-common python-minimal python-pexpect python-ptyprocess python-pycurl python-sqlparse python-tz python2.7 python2.7-minimal sg3-utils snmp ssl-cert
  update-inetd
Suggested packages:
  www-browser apache2-doc apache2-suexec-pristine | apache2-suexec-custom python-requests python-suds isc-dhcp-server-ldap policycoreutils libdigest-hmac-perl
  libgssapi-perl libdata-dump-perl libcrypt-ssleay-perl lm-sensors snmp-mibs-downloader libauthen-ntlm-perl make-doc python-doc python-tk python-markdown python-pygments
  python-memcache python-psycopg2 python-pymysql python-flup python-sqlite python-pil python-bcrypt geoip-database-extra | geoip-database-contrib gettext
  python-django-doc ipython bpython libgdal1 python-netaddr-docs python-pexpect-doc libcurl4-gnutls-dev python-pycurl-dbg python-pycurl-doc python-sqlparse-doc
  python2.7-doc binutils binfmt-support openssl-blacklist
The following NEW packages will be installed:
  apache2 apache2-bin apache2-data apache2-utils atftpd debmirror fence-agents ieee-data inetutils-inetd isc-dhcp-server javascript-common libapache2-mod-wsgi libapr1
  libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-ldap libauthen-sasl-perl libencode-locale-perl libfile-copy-recursive-perl libfile-listing-perl libfont-afm-perl
  libhtml-form-perl libhtml-format-perl libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl
  libhttp-message-perl libhttp-negotiate-perl libio-html-perl libio-socket-ssl-perl libirs-export141 libisccfg-export140 libjs-jquery liblockfile-simple-perl
  liblog-agent-perl liblua5.1-0 liblwp-mediatypes-perl liblwp-protocol-https-perl libmailtools-perl libnet-http-perl libnet-libidn-perl libnet-smtp-ssl-perl
  libnet-ssleay-perl libnet-telnet-perl libpython-stdlib libpython2.7 libpython2.7-minimal libpython2.7-stdlib libsensors4 libsgutils2-2 libsnmp-base libsnmp30
  libtimedate-perl liburi-perl libwww-perl libwww-robotrules-perl libyaml-0-2 make python python-cheetah python-django python-django-common python-minimal python-netaddr
  python-pexpect python-ptyprocess python-pycurl python-simplejson python-sqlparse python-tz python-urlgrabber python-yaml python2.7 python2.7-minimal sg3-utils snmp
  ssl-cert update-inetd
0 upgraded, 81 newly installed, 0 to remove and 0 not upgraded.
Need to get 14.9 MB of archives.
After this operation, 75.1 MB of additional disk space will be used.
Get:1 http://security.ubuntu.com/ubuntu xenial-security/main amd64 libpython2.7-minimal amd64 2.7.12-1ubuntu0~16.04.9 [338 kB]
.....
.....
Processing triggers for systemd (229-4ubuntu21.22) ...
Processing triggers for ufw (0.35-0ubuntu2) ...
root@srv:~# cd /root
--2019-10-14 09:18:26--  https://github.com/cobbler/cobbler/archive/v2.6.11.tar.gz
Resolving github.com (github.com)... 140.82.118.4
Connecting to github.com (github.com)|140.82.118.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/cobbler/cobbler/tar.gz/v2.6.11 [following]
--2019-10-14 09:18:27--  https://codeload.github.com/cobbler/cobbler/tar.gz/v2.6.11
Resolving codeload.github.com (codeload.github.com)... 192.30.253.120
Connecting to codeload.github.com (codeload.github.com)|192.30.253.120|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/x-gzip]
Saving to: ‘v2.6.11.tar.gz’
 
v2.6.11.tar.gz                                 [   <=>                                                                                   ] 650.01K  1.02MB/s    in 0.6s   
 
2019-10-14 09:18:28 (1.02 MB/s) - ‘v2.6.11.tar.gz’ saved [665610]
 
root@srv:~# tar xf v2.6.11.tar.gz
root@srv:~# cd cobbler-2.6.11
root@srv:~/cobbler-2.6.11# ls -al
total 160
drwxrwxr-x 17 root root  4096 Jan 23  2016 .
drwx------  3 root root  4096 Oct 14 09:18 ..
-rw-rw-r--  1 root root  4231 Jan 23  2016 AUTHORS
drwxrwxr-x  2 root root  4096 Jan 23  2016 aux
drwxrwxr-x  2 root root  4096 Jan 23  2016 bin
drwxrwxr-x  3 root root  4096 Jan 23  2016 cobbler
-rw-rw-r--  1 root root 12812 Jan 23  2016 cobbler.spec
drwxrwxr-x  2 root root  4096 Jan 23  2016 config
drwxrwxr-x  2 root root  4096 Jan 23  2016 contrib
-rw-rw-r--  1 root root 17988 Jan 23  2016 COPYING
drwxrwxr-x  3 root root  4096 Jan 23  2016 debian
drwxrwxr-x  3 root root  4096 Jan 23  2016 docs
-rw-rw-r--  1 root root   625 Jan 23  2016 .gitignore
drwxrwxr-x  3 root root  4096 Jan 23  2016 kickstarts
drwxrwxr-x  3 root root  4096 Jan 23  2016 koan
-rw-rw-r--  1 root root  3401 Jan 23  2016 Makefile
-rw-rw-r--  1 root root   320 Jan 23  2016 MANIFEST.in
drwxrwxr-x  4 root root  4096 Jan 23  2016 newtests
-rw-rw-r--  1 root root   770 Jan 23  2016 README
drwxrwxr-x  2 root root  4096 Jan 23  2016 scripts
-rw-rw-r--  1 root root 29921 Jan 23  2016 setup.py
drwxrwxr-x  3 root root  4096 Jan 23  2016 snippets
drwxrwxr-x  8 root root  4096 Jan 23  2016 templates
drwxrwxr-x  3 root root  4096 Jan 23  2016 tests
drwxrwxr-x  4 root root  4096 Jan 23  2016 web
root@srv:~/cobbler-2.6.11# make install
python setup.py build -f
running build
running build_py
fatal: Not a git repository (or any of the parent directories): .git
creating build
creating build/lib.linux-x86_64-2.7
creating build/lib.linux-x86_64-2.7/cobbler
copying cobbler/action_hardlink.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/serializer.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/collection_mgmtclasses.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/test_basic.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/action_acl.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/clogger.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/action_replicate.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/item.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/pxegen.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/configgen.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/remote.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/cobblerd.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/action_status.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/action_reposync.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/collection_systems.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/action_buildiso.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/templar.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/config.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/action_log.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/template_api.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/cexceptions.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/collection_repos.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/item_profile.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/__init__.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/action_power.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/item_mgmtclass.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/settings.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/couch.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/action_dlcontent.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/item_distro.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/action_validate.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/action_sync.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/item_system.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/codes.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/api.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/kickgen.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/collection_images.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/action_litesync.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/collection.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/yumgen.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/action_check.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/services.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/item_file.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/collection_packages.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/utils.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/item_image.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/item_repo.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/item_package.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/field_info.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/cli.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/collection_files.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/collection_profiles.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/resource.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/module_loader.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/action_report.py -> build/lib.linux-x86_64-2.7/cobbler
copying cobbler/collection_distros.py -> build/lib.linux-x86_64-2.7/cobbler
creating build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/serializer_catalog.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/authn_denyall.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/manage_in_tftpd.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/install_post_power.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/serializer_mysql.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/authz_allowall.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/install_pre_clear_anamon_logs.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/authn_ldap.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/authz_configfile.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/authn_testing.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/authn_configfile.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/install_post_log.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/__init__.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/install_post_puppet.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/manage_isc.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/sync_post_restart_services.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/authz_ownership.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/manage_bind.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/authn_passthru.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/authn_pam.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/install_pre_log.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/manage_tftpd_py.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/manage_import_signatures.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/install_post_report.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/authn_spacewalk.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/install_pre_puppet.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/manage_dnsmasq.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/serializer_couch.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/serializer_mongodb.py -> build/lib.linux-x86_64-2.7/cobbler/modules
copying cobbler/modules/scm_track.py -> build/lib.linux-x86_64-2.7/cobbler/modules
creating build/lib.linux-x86_64-2.7/koan
copying koan/qcreate.py -> build/lib.linux-x86_64-2.7/koan
copying koan/register.py -> build/lib.linux-x86_64-2.7/koan
copying koan/sub_process.py -> build/lib.linux-x86_64-2.7/koan
copying koan/virtinstall.py -> build/lib.linux-x86_64-2.7/koan
copying koan/app.py -> build/lib.linux-x86_64-2.7/koan
copying koan/__init__.py -> build/lib.linux-x86_64-2.7/koan
copying koan/opt_parse.py -> build/lib.linux-x86_64-2.7/koan
copying koan/xencreate.py -> build/lib.linux-x86_64-2.7/koan
copying koan/vmwcreate.py -> build/lib.linux-x86_64-2.7/koan
copying koan/openvzcreate.py -> build/lib.linux-x86_64-2.7/koan
copying koan/text_wrap.py -> build/lib.linux-x86_64-2.7/koan
copying koan/utils.py -> build/lib.linux-x86_64-2.7/koan
copying koan/imagecreate.py -> build/lib.linux-x86_64-2.7/koan
copying koan/configurator.py -> build/lib.linux-x86_64-2.7/koan
running build_scripts
creating build/scripts-2.7
copying and adjusting bin/cobbler -> build/scripts-2.7
copying and adjusting bin/cobblerd -> build/scripts-2.7
copying and adjusting bin/cobbler-ext-nodes -> build/scripts-2.7
copying and adjusting bin/koan -> build/scripts-2.7
copying bin/ovz-install -> build/scripts-2.7
copying and adjusting bin/cobbler-register -> build/scripts-2.7
changing mode of build/scripts-2.7/cobbler from 644 to 755
changing mode of build/scripts-2.7/cobblerd from 644 to 755
changing mode of build/scripts-2.7/cobbler-ext-nodes from 644 to 755
changing mode of build/scripts-2.7/koan from 644 to 755
changing mode of build/scripts-2.7/cobbler-register from 644 to 755
running build_man
building cobbler manpage
building cobbler-register manpage
building koan manpage
running build_cfg
configuring config/settings
configuring config/cobbler.conf
configuring config/cobbler_web.conf
configuring config/cobblerd.service
configuring config/cobblerd
python setup.py install --root / -f
running install
running build
running build_py
fatal: Not a git repository (or any of the parent directories): .git
running build_scripts
running build_man
running build_cfg
running install_lib
creating /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/action_hardlink.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/serializer.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/collection_mgmtclasses.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/test_basic.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/action_acl.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/clogger.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/action_replicate.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/item.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/pxegen.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/configgen.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/remote.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/cobblerd.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/action_status.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/action_reposync.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/collection_systems.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/action_buildiso.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/templar.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/config.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/action_log.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/template_api.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/cexceptions.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/collection_repos.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/item_profile.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/__init__.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/action_power.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/item_mgmtclass.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/settings.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/couch.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/action_dlcontent.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/item_distro.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/action_validate.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/action_sync.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/item_system.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/codes.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/api.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/kickgen.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/collection_images.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/action_litesync.py -> /usr/local/lib/python2.7/dist-packages/cobbler
creating /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/serializer_catalog.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/authn_denyall.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/manage_in_tftpd.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/install_post_power.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/serializer_mysql.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/authz_allowall.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/install_pre_clear_anamon_logs.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/authn_ldap.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/authz_configfile.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/authn_testing.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/authn_configfile.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/install_post_log.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/__init__.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/install_post_puppet.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/manage_isc.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/sync_post_restart_services.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/authz_ownership.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/manage_bind.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/authn_passthru.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/authn_pam.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/install_pre_log.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/manage_tftpd_py.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/manage_import_signatures.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/install_post_report.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/authn_spacewalk.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/install_pre_puppet.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/manage_dnsmasq.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/serializer_couch.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/serializer_mongodb.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/modules/scm_track.py -> /usr/local/lib/python2.7/dist-packages/cobbler/modules
copying build/lib.linux-x86_64-2.7/cobbler/collection.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/yumgen.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/action_check.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/services.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/item_file.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/collection_packages.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/utils.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/item_image.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/item_repo.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/item_package.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/field_info.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/cli.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/collection_files.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/collection_profiles.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/resource.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/module_loader.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/action_report.py -> /usr/local/lib/python2.7/dist-packages/cobbler
copying build/lib.linux-x86_64-2.7/cobbler/collection_distros.py -> /usr/local/lib/python2.7/dist-packages/cobbler
creating /usr/local/lib/python2.7/dist-packages/koan
copying build/lib.linux-x86_64-2.7/koan/qcreate.py -> /usr/local/lib/python2.7/dist-packages/koan
copying build/lib.linux-x86_64-2.7/koan/register.py -> /usr/local/lib/python2.7/dist-packages/koan
copying build/lib.linux-x86_64-2.7/koan/sub_process.py -> /usr/local/lib/python2.7/dist-packages/koan
copying build/lib.linux-x86_64-2.7/koan/virtinstall.py -> /usr/local/lib/python2.7/dist-packages/koan
copying build/lib.linux-x86_64-2.7/koan/app.py -> /usr/local/lib/python2.7/dist-packages/koan
copying build/lib.linux-x86_64-2.7/koan/__init__.py -> /usr/local/lib/python2.7/dist-packages/koan
copying build/lib.linux-x86_64-2.7/koan/opt_parse.py -> /usr/local/lib/python2.7/dist-packages/koan
copying build/lib.linux-x86_64-2.7/koan/xencreate.py -> /usr/local/lib/python2.7/dist-packages/koan
copying build/lib.linux-x86_64-2.7/koan/vmwcreate.py -> /usr/local/lib/python2.7/dist-packages/koan
copying build/lib.linux-x86_64-2.7/koan/openvzcreate.py -> /usr/local/lib/python2.7/dist-packages/koan
copying build/lib.linux-x86_64-2.7/koan/text_wrap.py -> /usr/local/lib/python2.7/dist-packages/koan
copying build/lib.linux-x86_64-2.7/koan/utils.py -> /usr/local/lib/python2.7/dist-packages/koan
copying build/lib.linux-x86_64-2.7/koan/imagecreate.py -> /usr/local/lib/python2.7/dist-packages/koan
copying build/lib.linux-x86_64-2.7/koan/configurator.py -> /usr/local/lib/python2.7/dist-packages/koan
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/action_hardlink.py to action_hardlink.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/serializer.py to serializer.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/collection_mgmtclasses.py to collection_mgmtclasses.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/test_basic.py to test_basic.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/action_acl.py to action_acl.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/clogger.py to clogger.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/action_replicate.py to action_replicate.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/item.py to item.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/pxegen.py to pxegen.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/configgen.py to configgen.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/remote.py to remote.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/cobblerd.py to cobblerd.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/action_status.py to action_status.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/action_reposync.py to action_reposync.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/collection_systems.py to collection_systems.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/action_buildiso.py to action_buildiso.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/templar.py to templar.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/config.py to config.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/action_log.py to action_log.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/template_api.py to template_api.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/cexceptions.py to cexceptions.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/collection_repos.py to collection_repos.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/item_profile.py to item_profile.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/action_power.py to action_power.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/item_mgmtclass.py to item_mgmtclass.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/settings.py to settings.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/couch.py to couch.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/action_dlcontent.py to action_dlcontent.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/item_distro.py to item_distro.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/action_validate.py to action_validate.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/action_sync.py to action_sync.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/item_system.py to item_system.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/codes.py to codes.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/api.py to api.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/kickgen.py to kickgen.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/collection_images.py to collection_images.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/action_litesync.py to action_litesync.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/serializer_catalog.py to serializer_catalog.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/authn_denyall.py to authn_denyall.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/manage_in_tftpd.py to manage_in_tftpd.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/install_post_power.py to install_post_power.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/serializer_mysql.py to serializer_mysql.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/authz_allowall.py to authz_allowall.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/install_pre_clear_anamon_logs.py to install_pre_clear_anamon_logs.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/authn_ldap.py to authn_ldap.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/authz_configfile.py to authz_configfile.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/authn_testing.py to authn_testing.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/authn_configfile.py to authn_configfile.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/install_post_log.py to install_post_log.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/install_post_puppet.py to install_post_puppet.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/manage_isc.py to manage_isc.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/sync_post_restart_services.py to sync_post_restart_services.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/authz_ownership.py to authz_ownership.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/manage_bind.py to manage_bind.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/authn_passthru.py to authn_passthru.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/authn_pam.py to authn_pam.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/install_pre_log.py to install_pre_log.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/manage_tftpd_py.py to manage_tftpd_py.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/manage_import_signatures.py to manage_import_signatures.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/install_post_report.py to install_post_report.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/authn_spacewalk.py to authn_spacewalk.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/install_pre_puppet.py to install_pre_puppet.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/manage_dnsmasq.py to manage_dnsmasq.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/serializer_couch.py to serializer_couch.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/serializer_mongodb.py to serializer_mongodb.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/modules/scm_track.py to scm_track.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/collection.py to collection.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/yumgen.py to yumgen.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/action_check.py to action_check.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/services.py to services.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/item_file.py to item_file.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/collection_packages.py to collection_packages.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/utils.py to utils.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/item_image.py to item_image.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/item_repo.py to item_repo.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/item_package.py to item_package.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/field_info.py to field_info.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/cli.py to cli.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/collection_files.py to collection_files.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/collection_profiles.py to collection_profiles.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/resource.py to resource.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/module_loader.py to module_loader.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/action_report.py to action_report.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/cobbler/collection_distros.py to collection_distros.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/koan/qcreate.py to qcreate.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/koan/register.py to register.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/koan/sub_process.py to sub_process.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/koan/virtinstall.py to virtinstall.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/koan/app.py to app.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/koan/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/koan/opt_parse.py to opt_parse.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/koan/xencreate.py to xencreate.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/koan/vmwcreate.py to vmwcreate.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/koan/openvzcreate.py to openvzcreate.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/koan/text_wrap.py to text_wrap.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/koan/utils.py to utils.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/koan/imagecreate.py to imagecreate.pyc
byte-compiling /usr/local/lib/python2.7/dist-packages/koan/configurator.py to configurator.pyc
running install_scripts
copying build/scripts-2.7/cobbler-register -> /usr/local/bin
copying build/scripts-2.7/cobbler -> /usr/local/bin
copying build/scripts-2.7/cobblerd -> /usr/local/bin
copying build/scripts-2.7/koan -> /usr/local/bin
copying build/scripts-2.7/ovz-install -> /usr/local/bin
copying build/scripts-2.7/cobbler-ext-nodes -> /usr/local/bin
changing mode of /usr/local/bin/cobbler-register to 755
changing mode of /usr/local/bin/cobbler to 755
changing mode of /usr/local/bin/cobblerd to 755
changing mode of /usr/local/bin/koan to 755
changing mode of /usr/local/bin/ovz-install to 775
changing mode of /usr/local/bin/cobbler-ext-nodes to 755
running install_data
copying bin/tftpd.py -> /usr/local/sbin
copying build/config/cobbler.conf -> /etc/apache2/conf-available
copying build/config/cobbler_web.conf -> /etc/apache2/conf-available
copying build/config/cobblerd -> /etc/init.d/
creating /usr/local/share/man/man1
copying build/docs/man/cobbler-register.1.gz -> /usr/local/share/man/man1
copying build/docs/man/cobbler.1.gz -> /usr/local/share/man/man1
copying build/docs/man/koan.1.gz -> /usr/local/share/man/man1
creating /var/lib/cobbler
creating /var/lib/cobbler/kickstarts
copying kickstarts/sample_old.seed -> /var/lib/cobbler/kickstarts
copying kickstarts/sample_esxi5.ks -> /var/lib/cobbler/kickstarts
copying kickstarts/default.ks -> /var/lib/cobbler/kickstarts
copying kickstarts/sample.seed -> /var/lib/cobbler/kickstarts
copying kickstarts/sample.ks -> /var/lib/cobbler/kickstarts
copying kickstarts/sample_esxi4.ks -> /var/lib/cobbler/kickstarts
copying kickstarts/sample_esx4.ks -> /var/lib/cobbler/kickstarts
copying kickstarts/sample_autoyast.xml -> /var/lib/cobbler/kickstarts
copying kickstarts/pxerescue.ks -> /var/lib/cobbler/kickstarts
copying kickstarts/legacy.ks -> /var/lib/cobbler/kickstarts
copying kickstarts/esxi5-ks.cfg -> /var/lib/cobbler/kickstarts
copying kickstarts/esxi4-ks.cfg -> /var/lib/cobbler/kickstarts
copying kickstarts/sample_end.ks -> /var/lib/cobbler/kickstarts
creating /var/lib/cobbler/kickstarts/install_profiles
copying kickstarts/install_profiles/README -> /var/lib/cobbler/kickstarts/install_profiles
copying kickstarts/install_profiles/machine.AA00FFCC1100-example -> /var/lib/cobbler/kickstarts/install_profiles
creating /var/lib/cobbler/snippets
copying snippets/keep_rhn_keys -> /var/lib/cobbler/snippets
copying snippets/save_boot_device -> /var/lib/cobbler/snippets
copying snippets/func_install_if_enabled -> /var/lib/cobbler/snippets
copying snippets/log_ks_post -> /var/lib/cobbler/snippets
copying snippets/post_s390_reboot -> /var/lib/cobbler/snippets
copying snippets/rhn_certificate_based_register -> /var/lib/cobbler/snippets
copying snippets/kickstart_start -> /var/lib/cobbler/snippets
copying snippets/main_partition_select -> /var/lib/cobbler/snippets
copying snippets/redhat_register -> /var/lib/cobbler/snippets
copying snippets/post_install_network_config -> /var/lib/cobbler/snippets
copying snippets/pre_install_network_config -> /var/lib/cobbler/snippets
copying snippets/pre_anamon -> /var/lib/cobbler/snippets
copying snippets/func_register_if_enabled -> /var/lib/cobbler/snippets
copying snippets/koan_environment -> /var/lib/cobbler/snippets
copying snippets/kickstart_done -> /var/lib/cobbler/snippets
copying snippets/log_ks_pre -> /var/lib/cobbler/snippets
copying snippets/post_koan_add_reinstall_entry -> /var/lib/cobbler/snippets
copying snippets/network_config -> /var/lib/cobbler/snippets
copying snippets/post_anamon -> /var/lib/cobbler/snippets
copying snippets/post_install_network_config_deb -> /var/lib/cobbler/snippets
copying snippets/pre_partition_select -> /var/lib/cobbler/snippets
copying snippets/keep_ssh_host_keys -> /var/lib/cobbler/snippets
copying snippets/late_apt_repo_config -> /var/lib/cobbler/snippets
copying snippets/restore_boot_device -> /var/lib/cobbler/snippets
copying snippets/puppet_install_if_enabled -> /var/lib/cobbler/snippets
copying snippets/network_config_esx -> /var/lib/cobbler/snippets
copying snippets/keep_files -> /var/lib/cobbler/snippets
copying snippets/download_config_files -> /var/lib/cobbler/snippets
copying snippets/puppet_register_if_enabled -> /var/lib/cobbler/snippets
copying snippets/SuSE/networking.xml -> /var/lib/cobbler/snippets
copying snippets/SuSE/proxy.xml -> /var/lib/cobbler/snippets
copying snippets/SuSE/suse_scriptwrapper.xml -> /var/lib/cobbler/snippets
copying snippets/SuSE/hosts.xml -> /var/lib/cobbler/snippets
copying snippets/SuSE/kdump.xml -> /var/lib/cobbler/snippets
copying snippets/post_run_deb -> /var/lib/cobbler/snippets
copying snippets/download_config_files_deb -> /var/lib/cobbler/snippets
copying snippets/partition_select -> /var/lib/cobbler/snippets
copying snippets/post_install_kernel_options -> /var/lib/cobbler/snippets
copying snippets/log_ks_post_nochroot -> /var/lib/cobbler/snippets
copying snippets/keep_cfengine_keys -> /var/lib/cobbler/snippets
copying snippets/preseed_apt_repo_config -> /var/lib/cobbler/snippets
copying snippets/cobbler_register -> /var/lib/cobbler/snippets
copying snippets/network_config_esxi -> /var/lib/cobbler/snippets
creating /var/lib/cobbler/scripts
copying scripts/preseed_early_default -> /var/lib/cobbler/scripts
copying scripts/preseed_late_default -> /var/lib/cobbler/scripts
copying config/distro_signatures.json -> /var/lib/cobbler/
creating /usr/local/share/cobbler
creating /usr/local/share/cobbler/web
copying web/cobbler.wsgi -> /usr/local/share/cobbler/web
copying web/manage.py -> /usr/local/share/cobbler/web
copying web/__init__.py -> /usr/local/share/cobbler/web
copying web/settings.py -> /usr/local/share/cobbler/web
copying web/urls.py -> /usr/local/share/cobbler/web
creating /srv/www
creating /srv/www/cobbler_webui_content
copying web/content/jquery-ui.min.js -> /srv/www/cobbler_webui_content/
copying web/content/jsGrowl.css -> /srv/www/cobbler_webui_content/
copying web/content/index.html -> /srv/www/cobbler_webui_content/
copying web/content/style.css -> /srv/www/cobbler_webui_content/
copying web/content/jsgrowl_middle_hover.png -> /srv/www/cobbler_webui_content/
copying web/content/jsgrowl_side_hover.png -> /srv/www/cobbler_webui_content/
copying web/content/jsgrowl_corners.png -> /srv/www/cobbler_webui_content/
copying web/content/jsgrowl_corners_hover.png -> /srv/www/cobbler_webui_content/
copying web/content/jquery.min.js -> /srv/www/cobbler_webui_content/
copying web/content/jsGrowl.js -> /srv/www/cobbler_webui_content/
copying web/content/jquery-ui.css -> /srv/www/cobbler_webui_content/
copying web/content/favicon.png -> /srv/www/cobbler_webui_content/
copying web/content/tooltip.png -> /srv/www/cobbler_webui_content/
copying web/content/jsGrowl_jquery.js -> /srv/www/cobbler_webui_content/
copying web/content/logo-cobbler.png -> /srv/www/cobbler_webui_content/
copying web/content/jsgrowl_close.png -> /srv/www/cobbler_webui_content/
copying web/content/cobbler.js -> /srv/www/cobbler_webui_content/
creating /srv/www/cobbler_webui_content/images
copying web/content/images/ui-bg_glass_75_e6e6e6_1x400.png -> /srv/www/cobbler_webui_content/images/
copying web/content/images/ui-icons_cd0a0a_256x240.png -> /srv/www/cobbler_webui_content/images/
copying web/content/images/ui-icons_222222_256x240.png -> /srv/www/cobbler_webui_content/images/
copying web/content/images/ui-icons_2e83ff_256x240.png -> /srv/www/cobbler_webui_content/images/
copying web/content/images/ui-bg_glass_65_ffffff_1x400.png -> /srv/www/cobbler_webui_content/images/
copying web/content/images/ui-bg_highlight-soft_75_cccccc_1x100.png -> /srv/www/cobbler_webui_content/images/
copying web/content/images/ui-bg_glass_55_fbf9ee_1x400.png -> /srv/www/cobbler_webui_content/images/
copying web/content/images/ui-bg_flat_75_ffffff_40x100.png -> /srv/www/cobbler_webui_content/images/
copying web/content/images/ui-bg_glass_95_fef1ec_1x400.png -> /srv/www/cobbler_webui_content/images/
copying web/content/images/ui-icons_888888_256x240.png -> /srv/www/cobbler_webui_content/images/
copying web/content/images/ui-bg_glass_75_dadada_1x400.png -> /srv/www/cobbler_webui_content/images/
copying web/content/images/ui-icons_454545_256x240.png -> /srv/www/cobbler_webui_content/images/
copying web/content/images/ui-bg_flat_0_aaaaaa_40x100.png -> /srv/www/cobbler_webui_content/images/
creating /usr/local/share/cobbler/web/cobbler_web
copying web/cobbler_web/__init__.py -> /usr/local/share/cobbler/web/cobbler_web
copying web/cobbler_web/urls.py -> /usr/local/share/cobbler/web/cobbler_web
copying web/cobbler_web/views.py -> /usr/local/share/cobbler/web/cobbler_web
creating /usr/local/share/cobbler/web/cobbler_web/templatetags
copying web/cobbler_web/templatetags/site.py -> /usr/local/share/cobbler/web/cobbler_web/templatetags
copying web/cobbler_web/templatetags/__init__.py -> /usr/local/share/cobbler/web/cobbler_web/templatetags
creating /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/empty.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/check.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/task_created.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/login.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/settings.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/item.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/error_page.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/eventlog.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/ksfile_edit.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/master.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/ksfile_list.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/generic_list.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/index.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/blank.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/snippet_list.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/paginate.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/import.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/enoaccess.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/events.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/snippet_edit.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/generic_edit.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
copying web/cobbler_web/templates/filter.tmpl -> /usr/local/share/cobbler/web/cobbler_web/templates
creating /var/lib/cobbler/webui_sessions
creating /var/lib/cobbler/loaders
creating /srv/www/cobbler
creating /srv/www/cobbler/aux
copying aux/anamon.init -> /srv/www/cobbler/aux
copying aux/anamon -> /srv/www/cobbler/aux
creating /etc/cobbler
copying build/config/cobbler.conf -> /etc/cobbler/
copying build/config/cobbler_web.conf -> /etc/cobbler/
copying build/config/cobblerd -> /etc/cobbler/
copying build/config/cobblerd.service -> /etc/cobbler/
copying build/config/settings -> /etc/cobbler/
copying config/auth.conf -> /etc/cobbler/
copying config/cheetah_macros -> /etc/cobbler/
copying config/cobbler_bash -> /etc/cobbler/
copying config/cobblerd_rotate -> /etc/cobbler/
copying config/completions -> /etc/cobbler/
copying config/import_rsync_whitelist -> /etc/cobbler/
copying config/modules.conf -> /etc/cobbler/
copying config/mongodb.conf -> /etc/cobbler/
copying config/rsync.exclude -> /etc/cobbler/
copying config/users.conf -> /etc/cobbler/
copying config/users.digest -> /etc/cobbler/
copying config/version -> /etc/cobbler/
copying templates/etc/rsync.template -> /etc/cobbler/
copying templates/etc/named.template -> /etc/cobbler/
copying templates/etc/dnsmasq.template -> /etc/cobbler/
copying templates/etc/tftpd.template -> /etc/cobbler/
copying templates/etc/secondary.template -> /etc/cobbler/
copying templates/etc/zone.template -> /etc/cobbler/
copying templates/etc/dhcp.template -> /etc/cobbler/
creating /etc/cobbler/iso
copying templates/iso/buildiso.template -> /etc/cobbler/iso
creating /etc/cobbler/pxe
copying templates/pxe/s390x_parm.template -> /etc/cobbler/pxe
copying templates/pxe/pxesystem_arm.template -> /etc/cobbler/pxe
copying templates/pxe/efidefault.template -> /etc/cobbler/pxe
copying templates/pxe/gpxe_system_esxi5.template -> /etc/cobbler/pxe
copying templates/pxe/bootcfg_esxi51.template -> /etc/cobbler/pxe
copying templates/pxe/grubprofile.template -> /etc/cobbler/pxe
copying templates/pxe/gpxe_system_windows.template -> /etc/cobbler/pxe
copying templates/pxe/bootcfg_esxi60.template -> /etc/cobbler/pxe
copying templates/pxe/nexenta_grub_menu.template -> /etc/cobbler/pxe
copying templates/pxe/grubsystem.template -> /etc/cobbler/pxe
copying templates/pxe/pxelocal_ia64.template -> /etc/cobbler/pxe
copying templates/pxe/s390x_conf.template -> /etc/cobbler/pxe
copying templates/pxe/grublocal.template -> /etc/cobbler/pxe
copying templates/pxe/pxeprofile_esxi.template -> /etc/cobbler/pxe
copying templates/pxe/pxesystem_s390x.template -> /etc/cobbler/pxe
copying templates/pxe/pxesystem_ppc.template -> /etc/cobbler/pxe
copying templates/pxe/pxeprofile_arm.template -> /etc/cobbler/pxe
copying templates/pxe/gpxe_system_esxi6.template -> /etc/cobbler/pxe
copying templates/pxe/bootcfg_esxi55.template -> /etc/cobbler/pxe
copying templates/pxe/gpxe_system_local.template -> /etc/cobbler/pxe
copying templates/pxe/pxesystem.template -> /etc/cobbler/pxe
copying templates/pxe/pxeprofile_s390x.template -> /etc/cobbler/pxe
copying templates/pxe/pxedefault.template -> /etc/cobbler/pxe
copying templates/pxe/gpxe_system_freebsd.template -> /etc/cobbler/pxe
copying templates/pxe/pxelocal.template -> /etc/cobbler/pxe
copying templates/pxe/pxesystem_ia64.template -> /etc/cobbler/pxe
copying templates/pxe/pxeprofile.template -> /etc/cobbler/pxe
copying templates/pxe/pxelocal_s390x.template -> /etc/cobbler/pxe
copying templates/pxe/nexenta_profile.template -> /etc/cobbler/pxe
copying templates/pxe/bootcfg_esxi5.template -> /etc/cobbler/pxe
copying templates/pxe/pxesystem_esxi.template -> /etc/cobbler/pxe
copying templates/pxe/gpxe_system_linux.template -> /etc/cobbler/pxe
creating /etc/cobbler/reporting
copying templates/reporting/build_report_email.template -> /etc/cobbler/reporting
creating /etc/cobbler/power
copying templates/power/fence_drac.template -> /etc/cobbler/power
copying templates/power/fence_lpar.template -> /etc/cobbler/power
copying templates/power/fence_apc_snmp.template -> /etc/cobbler/power
copying templates/power/fence_rsa.template -> /etc/cobbler/power
copying templates/power/fence_ilo.template -> /etc/cobbler/power
copying templates/power/fence_ipmilan.template -> /etc/cobbler/power
copying templates/power/fence_bullpap.template -> /etc/cobbler/power
copying templates/power/fence_wti.template -> /etc/cobbler/power
copying templates/power/fence_bladecenter.template -> /etc/cobbler/power
copying templates/power/fence_virsh.template -> /etc/cobbler/power
creating /etc/cobbler/ldap
copying templates/ldap/ldap_authconfig.template -> /etc/cobbler/ldap
creating /var/lib/cobbler/triggers
creating /var/lib/cobbler/triggers/add
creating /var/lib/cobbler/triggers/add/distro
creating /var/lib/cobbler/triggers/add/distro/pre
creating /var/lib/cobbler/triggers/add/distro/post
creating /var/lib/cobbler/triggers/add/profile
creating /var/lib/cobbler/triggers/add/profile/pre
creating /var/lib/cobbler/triggers/add/profile/post
creating /var/lib/cobbler/triggers/add/system
creating /var/lib/cobbler/triggers/add/system/pre
creating /var/lib/cobbler/triggers/add/system/post
creating /var/lib/cobbler/triggers/add/repo
creating /var/lib/cobbler/triggers/add/repo/pre
creating /var/lib/cobbler/triggers/add/repo/post
creating /var/lib/cobbler/triggers/add/mgmtclass
creating /var/lib/cobbler/triggers/add/mgmtclass/pre
creating /var/lib/cobbler/triggers/add/mgmtclass/post
creating /var/lib/cobbler/triggers/add/package
creating /var/lib/cobbler/triggers/add/package/pre
creating /var/lib/cobbler/triggers/add/package/post
creating /var/lib/cobbler/triggers/add/file
creating /var/lib/cobbler/triggers/add/file/pre
creating /var/lib/cobbler/triggers/add/file/post
creating /var/lib/cobbler/triggers/delete
creating /var/lib/cobbler/triggers/delete/distro
creating /var/lib/cobbler/triggers/delete/distro/pre
creating /var/lib/cobbler/triggers/delete/distro/post
creating /var/lib/cobbler/triggers/delete/profile
creating /var/lib/cobbler/triggers/delete/profile/pre
creating /var/lib/cobbler/triggers/delete/profile/post
creating /var/lib/cobbler/triggers/delete/system
creating /var/lib/cobbler/triggers/delete/system/pre
creating /var/lib/cobbler/triggers/delete/system/post
creating /var/lib/cobbler/triggers/delete/repo
creating /var/lib/cobbler/triggers/delete/repo/pre
creating /var/lib/cobbler/triggers/delete/repo/post
creating /var/lib/cobbler/triggers/delete/mgmtclass
creating /var/lib/cobbler/triggers/delete/mgmtclass/pre
creating /var/lib/cobbler/triggers/delete/mgmtclass/post
creating /var/lib/cobbler/triggers/delete/package
creating /var/lib/cobbler/triggers/delete/package/pre
creating /var/lib/cobbler/triggers/delete/package/post
creating /var/lib/cobbler/triggers/delete/file
creating /var/lib/cobbler/triggers/delete/file/pre
creating /var/lib/cobbler/triggers/delete/file/post
creating /var/lib/cobbler/triggers/install
creating /var/lib/cobbler/triggers/install/pre
creating /var/lib/cobbler/triggers/install/post
creating /var/lib/cobbler/triggers/install/firstboot
creating /var/lib/cobbler/triggers/sync
creating /var/lib/cobbler/triggers/sync/pre
creating /var/lib/cobbler/triggers/sync/post
creating /var/lib/cobbler/triggers/change
creating /var/lib/cobbler/config
creating /var/lib/cobbler/config/distros.d
creating /var/lib/cobbler/config/images.d
creating /var/lib/cobbler/config/profiles.d
creating /var/lib/cobbler/config/repos.d
creating /var/lib/cobbler/config/systems.d
creating /var/lib/cobbler/config/mgmtclasses.d
creating /var/lib/cobbler/config/packages.d
creating /var/lib/cobbler/config/files.d
creating /var/lib/koan
creating /var/lib/koan/config
creating /var/log/cobbler
creating /var/log/cobbler/kicklog
creating /var/log/cobbler/syslog
creating /var/log/httpd
creating /var/log/httpd/cobbler
creating /var/log/cobbler/anamon
creating /var/log/koan
creating /var/log/cobbler/tasks
creating /usr/local/share/cobbler/spool
creating /usr/local/share/cobbler/spool/koan
creating /srv/www/cobbler/localmirror
creating /srv/www/cobbler/repo_mirror
creating /srv/www/cobbler/ks_mirror
creating /srv/www/cobbler/ks_mirror/config
creating /srv/www/cobbler/links
creating /srv/www/cobbler/pub
creating /srv/www/cobbler/rendered
creating /srv/www/cobbler/images
creating /srv/www/cobbler/svc
copying bin/services.py -> /srv/www/cobbler/svc/
creating /etc/cobbler/zone_templates
running install_egg_info
Writing /usr/local/lib/python2.7/dist-packages/cobbler-2.6.11.egg-info
changing mode of /usr/local/share/cobbler/web
changing mode of //var/lib/cobbler/webui_sessions
root@srv:~/cobbler-2.6.11# a2enconf cobbler cobbler_web
Enabling conf cobbler.
Enabling conf cobbler_web.
To activate the new configuration, you need to run:
  service apache2 reload
root@srv:~/cobbler-2.6.11# a2enmod proxy proxy_http rewrite ssl
Enabling module proxy.
Considering dependency proxy for proxy_http:
Module proxy already enabled
Enabling module proxy_http.
Enabling module rewrite.
Considering dependency setenvif for ssl:
Module setenvif already enabled
Considering dependency mime for ssl:
Module mime already enabled
Considering dependency socache_shmcb for ssl:
Enabling module socache_shmcb.
Enabling module ssl.
See /usr/share/doc/apache2/README.Debian.gz on how to configure SSL and create self-signed certificates.
To activate the new configuration, you need to run:
  service apache2 restart
root@srv:~/cobbler-2.6.11# a2ensite default-ssl
Enabling site default-ssl.
To activate the new configuration, you need to run:
  service apache2 reload
root@srv:~/cobbler-2.6.11# systemctl enable apache2
apache2.service is not a native service, redirecting to systemd-sysv-install
Executing /lib/systemd/systemd-sysv-install enable apache2
insserv: Script cobblerd is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: Script cobblerd is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
root@srv:~/cobbler-2.6.11# nano /etc/cobbler/settings
root@srv:~/cobbler-2.6.11# openssl passwd -1
Password:
Verifying - Password:
$1$NQVDgdMU$D09kGYRrHTP/yqP3krgZa0
root@srv:~/cobbler-2.6.11# nano /etc/cobbler/settings
root@srv:~/cobbler-2.6.11# grep default_password_crypted /etc/cobbler/settings
default_password_crypted: "$1$NQVDgdMU$D09kGYRrHTP/yqP3krgZa0"
root@srv:~/cobbler-2.6.11# nano /etc/cobbler/settings
root@srv:~/cobbler-2.6.11# nano /etc/cobbler/dhcp.template
root@srv:~/cobbler-2.6.11# nano /usr/local/share/cobbler/web/settings.py
root@srv:~/cobbler-2.6.11# grep ALLOWED_HOSTS /usr/local/share/cobbler/web/settings.py
ALLOWED_HOSTS = '*'
root@srv:~/cobbler-2.6.11# grep SECRET_KEY /usr/local/share/cobbler/web/settings.py
SECRET_KEY = 'veec1Ahkaegu5al4jaifae1rauthohphah7thij#aizieFul9vie*ch3bei^weiK'
root@srv:~/cobbler-2.6.11# htdigest /etc/cobbler/users.digest "Cobbler" cobbler
Changing password for user cobbler in realm Cobbler
New password:
Re-type new password:
root@srv:~/cobbler-2.6.11# cat /etc/cobbler/users.digest
cobbler:Cobbler:e2eb6674f57d33a61a507a5b3632c32a
root@srv:~/cobbler-2.6.11# nano /usr/local/share/cobbler/web/cobbler.wsgi
root@srv:~/cobbler-2.6.11# ln -s /usr/local/lib/python2.7/dist-packages/cobbler /usr/lib/python2.7/dist-packages/
root@srv:~/cobbler-2.6.11# systemctl start cobblerd
root@rv:~/cobbler-2.6.11# systemctl status cobblerd
● cobblerd.service - LSB: daemon for libvirt virtualization API
   Loaded: loaded (/etc/init.d/cobblerd; bad; vendor preset: enabled)
   Active: active (running) since Mon 2019-10-14 09:23:22 EDT; 5s ago
     Docs: man:systemd-sysv-generator(8)
  Process: 14009 ExecStart=/etc/init.d/cobblerd start (code=exited, status=0/SUCCESS)
    Tasks: 1
   Memory: 50.1M
      CPU: 970ms
   CGroup: /system.slice/cobblerd.service
           └─14021 /usr/bin/python /usr/local/bin/cobblerd
 
Oct 14 09:23:21 srv systemd[1]: Starting LSB: daemon for libvirt virtualization API...
Oct 14 09:23:22 srv cobblerd[14009]: Starting cobbler daemon: OK
Oct 14 09:23:22 srv systemd[1]: Started LSB: daemon for libvirt virtualization API.
root@srv:~/cobbler-2.6.11# systemctl enable cobblerd
cobblerd.service is not a native service, redirecting to systemd-sysv-install
Executing /lib/systemd/systemd-sysv-install enable cobblerd
insserv: Script cobblerd is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: Script cobblerd is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: Script cobblerd is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: Script cobblerd is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: Script cobblerd is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: Script cobblerd is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: Script cobblerd is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: Script cobblerd is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
insserv: Script cobblerd is broken: incomplete LSB comment.
insserv: missing `Required-Stop:'  entry: please add even if empty.
root@srv:~/cobbler-2.6.11# cobbler check
httpd does not appear to be running and proxying cobbler, or SELinux is in the way. Original traceback:
Traceback (most recent call last):
  File "/usr/local/lib/python2.7/dist-packages/cobbler/cli.py", line 252, in check_setup
    s.ping()
  File "/usr/lib/python2.7/xmlrpclib.py", line 1243, in __call__
    return self.__send(self.__name, args)
  File "/usr/lib/python2.7/xmlrpclib.py", line 1602, in __request
    verbose=self.__verbose
  File "/usr/lib/python2.7/xmlrpclib.py", line 1283, in request
    return self.single_request(host, handler, request_body, verbose)
  File "/usr/lib/python2.7/xmlrpclib.py", line 1331, in single_request
    response.msg,
ProtocolError: <ProtocolError for 192.168.0.25:80/cobbler_api: 404 Not Found>
root@srv:~/cobbler-2.6.11# systemctl restart apache2
root@srv:~/cobbler-2.6.11# cobbler check
The following are potential configuration items that you may want to fix:
 
1 : some network boot-loaders are missing from /var/lib/cobbler/loaders, you may run 'cobbler get-loaders' to download them, or, if you only want to handle x86/x86_64 netbooting, you may ensure that you have installed a *recent* version of the syslinux package installed and can ignore this message entirely.  Files in this directory, should you want to support all architectures, should include pxelinux.0, menu.c32, elilo.efi, and yaboot. The 'cobbler get-loaders' command is the easiest way to resolve these requirements.
 
Restart cobblerd and then run 'cobbler sync' to apply changes.
root@srv:~/cobbler-2.6.11# cobbler get-loaders
task started: 2019-10-14_092416_get_loaders
task started (id=Download Bootloader Content, time=Mon Oct 14 09:24:16 2019)
downloading http://cobbler.github.io/loaders/README to /var/lib/cobbler/loaders/README
downloading http://cobbler.github.io/loaders/COPYING.elilo to /var/lib/cobbler/loaders/COPYING.elilo
downloading http://cobbler.github.io/loaders/COPYING.yaboot to /var/lib/cobbler/loaders/COPYING.yaboot
downloading http://cobbler.github.io/loaders/COPYING.syslinux to /var/lib/cobbler/loaders/COPYING.syslinux
downloading http://cobbler.github.io/loaders/elilo-3.8-ia64.efi to /var/lib/cobbler/loaders/elilo-ia64.efi
downloading http://cobbler.github.io/loaders/yaboot-1.3.17 to /var/lib/cobbler/loaders/yaboot
downloading http://cobbler.github.io/loaders/pxelinux.0-3.86 to /var/lib/cobbler/loaders/pxelinux.0
downloading http://cobbler.github.io/loaders/menu.c32-3.86 to /var/lib/cobbler/loaders/menu.c32
downloading http://cobbler.github.io/loaders/grub-0.97-x86.efi to /var/lib/cobbler/loaders/grub-x86.efi
downloading http://cobbler.github.io/loaders/grub-0.97-x86_64.efi to /var/lib/cobbler/loaders/grub-x86_64.efi
*** TASK COMPLETE ***
root@srv:~/cobbler-2.6.11# cobbler sync
task started: 2019-10-14_092424_sync
task started (id=Sync, time=Mon Oct 14 09:24:24 2019)
running pre-sync triggers
cleaning trees
mkdir: /srv/tftp/pxelinux.cfg
mkdir: /srv/tftp/grub
mkdir: /srv/tftp/images
mkdir: /srv/tftp/s390x
mkdir: /srv/tftp/ppc
mkdir: /srv/tftp/etc
removing: /srv/tftp/grub/images
copying bootloaders
trying hardlink /var/lib/cobbler/loaders/pxelinux.0 -> /srv/tftp/pxelinux.0
trying hardlink /var/lib/cobbler/loaders/menu.c32 -> /srv/tftp/menu.c32
trying hardlink /var/lib/cobbler/loaders/yaboot -> /srv/tftp/yaboot
trying hardlink /var/lib/cobbler/loaders/grub-x86_64.efi -> /srv/tftp/grub/grub-x86_64.efi
trying hardlink /var/lib/cobbler/loaders/grub-x86.efi -> /srv/tftp/grub/grub-x86.efi
copying distros to tftpboot
copying images
generating PXE configuration files
generating PXE menu structure
rendering DHCP files
generating /etc/dhcp/dhcpd.conf
rendering TFTPD files
generating /etc/xinetd.d/tftp
cleaning link caches
running post-sync triggers
running python triggers from /var/lib/cobbler/triggers/sync/post/*
running python trigger cobbler.modules.sync_post_restart_services
running: dhcpd -t -q
received on stdout:
received on stderr:
running: service isc-dhcp-server restart
received on stdout:
received on stderr:
running shell triggers from /var/lib/cobbler/triggers/sync/post/*
running python triggers from /var/lib/cobbler/triggers/change/*
running python trigger cobbler.modules.scm_track
running shell triggers from /var/lib/cobbler/triggers/change/*
*** TASK COMPLETE ***

One thought on “Install Cobbler 2.6 under Ubuntu 16.04 LTS from Cobbler source – manual intallation”

  1. Excellent article. Waiting for another article on the subject how to use Cobbler2.8x and Cobbler web in Ubuntu18.04. If you need any help im available at jayavardhanu@gmail.com as im working on Cobbler2.8x on Ubuntu18.04

Leave a Reply

Your email address will not be published. Required fields are marked *