Class: Runcible::Models::YumImporter
- Inherits:
-
Importer
- Object
- Importer
- Runcible::Models::YumImporter
show all
- Defined in:
- lib/runcible/models/yum_importer.rb
Constant Summary
collapse
- ID =
'yum_importer'
- REPO_TYPE =
'rpm-repo'
Instance Attribute Summary collapse
Instance Method Summary
collapse
Methods inherited from Importer
#initialize
Instance Attribute Details
#checksum_type ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def checksum_type
@checksum_type
end
|
#feed ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def feed
@feed
end
|
#max_speed ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def max_speed
@max_speed
end
|
#newest ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def newest
@newest
end
|
#num_old_packages ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def num_old_packages
@num_old_packages
end
|
#num_retries ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def num_retries
@num_retries
end
|
#num_threads ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def num_threads
@num_threads
end
|
#proxy_pass ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def proxy_pass
@proxy_pass
end
|
#proxy_port ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def proxy_port
@proxy_port
end
|
#proxy_url ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def proxy_url
@proxy_url
end
|
#proxy_user ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def proxy_user
@proxy_user
end
|
#purge_orphaned ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def purge_orphaned
@purge_orphaned
end
|
#remove_old ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def remove_old
@remove_old
end
|
#retry_delay ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def retry_delay
@retry_delay
end
|
#skip ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def skip
@skip
end
|
#ssl_ca_cert ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def ssl_ca_cert
@ssl_ca_cert
end
|
#ssl_client_cert ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def ssl_client_cert
@ssl_client_cert
end
|
#ssl_client_key ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def ssl_client_key
@ssl_client_key
end
|
#ssl_verify ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def ssl_verify
@ssl_verify
end
|
#verify_checksum ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def verify_checksum
@verify_checksum
end
|
#verify_size ⇒ Object
31
32
33
|
# File 'lib/runcible/models/yum_importer.rb', line 31
def verify_size
@verify_size
end
|
Instance Method Details
#config ⇒ Object
44
45
46
|
# File 'lib/runcible/models/yum_importer.rb', line 44
def config
as_json
end
|
#id ⇒ Object
36
37
38
|
# File 'lib/runcible/models/yum_importer.rb', line 36
def id
YumImporter::ID
end
|
#repo_type ⇒ Object
40
41
42
|
# File 'lib/runcible/models/yum_importer.rb', line 40
def repo_type
YumImporter::REPO_TYPE
end
|