This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| log { | |
| module: DEFAULT | |
| enable: debug+ | |
| timestamp: true | |
| output: /var/log/qdrouterd.log | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo 'ForemanTasks::Task.where(:label => "Actions::Candlepin::ListenOnCandlepinEvents", :state => "running").map { |task| task.update_column(:state, "stopped") }' | foreman-rake console |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| User.current = User.anonymous_admin | |
| SmartProxy.all.each do |proxy| | |
| content_host = ::Katello::System.where(:name => proxy.name).order("created_at DESC").first | |
| if content_host | |
| proxy.content_host_id = content_host.id | |
| proxy.save! | |
| puts "Capsule #{proxy} has Content Host #{content_host}" | |
| else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace :katello do | |
| task :reconnect_capsule do | |
| User.current = User.anonymous_admin | |
| SmartProxy.all.each do |proxy| | |
| content_host = ::Katello::System.where(:name => proxy.name).order("created_at DESC").first | |
| if content_host | |
| proxy.content_host_id = content_host.id | |
| proxy.save! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cat <<EOF > /root/freeipa.txt | |
| FreeIPA debug info: | |
| Parameter: <%= @host.info['parameters']['realm'] %> | |
| OTP: <%= @host.otp %> | |
| Realm: <%= @host.realm %> | |
| Realm Type: <%= @host.realm.realm_type %> | |
| EOF |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Edit /usr/sbin/upload-salt-reports | |
| 2. On line 55 change the {} to [] so it looks like this: | |
| def run(function, argument=[]): | |
| 3. On Line 65 change return ret to this: | |
| return ret['data'] if 'data' in ret else ret | |
| 4. Run upload-salt-reports by hand and see that it's uploading reports again |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| In usr/share/foreman/vendor/ruby/1.9.1/gems/foreman_salt-2.0.2/app/services/foreman_salt/report_importer.rb: | |
| Change this line: | |
| time[:total] = time.values.inject(&:+) | |
| To this: | |
| time[:total] = time.values.compact.inject(&:+) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| import json | |
| import os | |
| import sys | |
| import salt.config | |
| import salt.runner | |
| if __name__ == '__main__': | |
| __opts__ = salt.config.master_config( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| log { | |
| module: DEFAULT | |
| enable: trace+ | |
| timestamp: true | |
| output: /var/log/qdrouterd.log | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| :proto: https | |
| :host: katello-dev.bitbin.de | |
| :port: 443 | |
| :ssl_ca: "/etc/puppet/ssl_ca.pem" | |
| :ssl_cert: "/etc/puppet/client_cert.pem" | |
| :ssl_key: "/etc/puppet/client_key.pem" | |
| :timeout: 10 | |
| :salt: /usr/bin/salt | |
| :upload_grains: true |