Questions tagged [configuration-management]

Software configuration management (SCM) is the task of tracking and controlling changes in the software deployments

In software engineering, software configuration management (SCM) is the task of tracking and controlling changes in the software. Configuration management practices include revision control and the establishment of baselines.

SCM concerns itself with answering the question "Somebody did something, how can one reproduce it?" Often the problem involves not reproducing "it" identically, but with controlled, incremental changes. Answering the question thus becomes a matter of comparing different results and of analysing their differences. Traditional configuration management typically focused on controlled creation of relatively simple products. Now, implementers of SCM face the challenge of dealing with relatively minor increments under their own control, in the context of the complex system being developed. According to another simple definition: Software Configuration Management is how you control the evolution of a software project.

407 questions
0
votes
0 answers

SCCM - Task sequence with application failure

I have been having some issues lately when including applications in task sequences. When running any task sequence that contains applications, it automatically fails, and says "The referenced package cannot be found." I've checked my distribution…
DylanL
  • 1
  • 1
0
votes
1 answer

Is there a easy way to configure users and settings across multiple operating systems?

I install a lot of operating systems (both Linux and Windows) on VMs. After the install, I would like to setup some common users and groups on the machine. These users and settings would be common across all the machines. Is there a tool that lets…
0
votes
1 answer

DOORS creates Object ID while they are not saved

I am adding some 2000 new objects to a DOORS module, I do this by importing a spread sheet with blank IDs, DOORS is supposed to create IDs for those blank rows. Now the problem is, while i import spreadsheet, DOORS hangs, then when i Kill DOORS…
M Sharath Hegde
  • 485
  • 1
  • 6
  • 20
0
votes
1 answer

To install pdf reader on Windows and Linux - Chef

For config mgmt, we first moved from Shell scripting to Python scripting, for the purpose of smooth transition in supporting any new platform(OS), with minimum code changes. Python code uses popen() to execute commands based on OS. As we use python…
overexchange
  • 15,768
  • 30
  • 152
  • 347
0
votes
2 answers

App.config only read when debugging

I am currently experiencing an issue that I haven't been able to resolve. I have an application where I have this code: AppDomain.CurrentDomain.SetData("APP_CONFIG_FILE", "App.config"); AppDomain.CurrentDomain.SetupInformation.ConfigurationFile =…
kfuglsang
  • 2,385
  • 2
  • 21
  • 26
0
votes
1 answer

Why isn't my Salt minion showing any pillar attributes?

I've been through the salt and pillar walkthroughs and in general, everything works as expected with my setup. In fact, there isn't anything that I'm aware of that isn't working properly...until now. This is my first foray into using the pillar…
harperville
  • 6,921
  • 8
  • 28
  • 36
0
votes
1 answer

How can I "sprinkle" my minions with custom grains when deploying salt-minion using Saltify (salt-cloud)?

I've gotten saltify to work on a fresh minion. I am able to specify a profile for the minion as well. However, I don't know how to assign custom grains to my minion during this process. Here's my set up. In /etc/salt/cloud.profiles.d/saltify.conf…
harperville
  • 6,921
  • 8
  • 28
  • 36
0
votes
1 answer

How do I bootstrap my EC2 webserver to connect to the Chef GUI page? Where it says nodes

I'm trying to get my CentOS 7 EC2 instance to show under here...? https://api.chef.io/organizations/rp_training_org/nodes I have an CentOS 7 EC2 instance with ChefDK installed and I need to get it connected to the Chef GUI page...I'm somewhat a…
0
votes
3 answers

Pros and Cons of Fluent and XML Configuration

If you we're about to start a new project with some third party libraries (logging, orm, di, whatever), would you prefer to configure all this libraries via programming with fluent interfaces or with XML files? Would you use a library that only…
goenning
  • 6,514
  • 1
  • 35
  • 42
0
votes
2 answers

A Configuration Management Tool that includes version control?

TL;DR is there any tools that have features for both version controlling and configuration management? I am completely lost at Configuration management and version control tool, what I can conclude from researching is that version control is just…
0
votes
2 answers

Creating user passwords from an Ansible Playbook

I'm sure someone here can solve my problem. I am creating users on hosts that are defined in my Ansible hosts file. BUT when the users wish to login, the root user needs to define the user password. I need to automate the creation of user…
0
votes
1 answer

Track changes in configuration tables and create automated scripts to deploy them other envionments

In the product that I work on, there are many configuration tables. I need to find a way to track configuration changes (hopefully with some kind of version/changeset number), deploy the configuration changes to other environments using the…
0
votes
1 answer

What is Most recent discovery in cmdb_ci table

I want to understand what is the role of 'Most recent discovery' in cmdb_ci table. What are the scenarios when this field got updated.
Done With Fun
  • 45
  • 2
  • 14
0
votes
1 answer

Puppet & Docker

I was going through Puppet and comparing it with Docker. I came to know that Puppet is used for configuration management for scalable infrastructure. New VM's setup can be done with same configuration easily etc. Seems that Docker is also capable of…
Kalyan
  • 85
  • 2
  • 10
0
votes
2 answers

Git: Combining two independent repos to one without losing the history

I got two repos with the following folder structure: > folder1 >.git > file1 > file2 > folder2 >.git > file3 > file4 Now I want to create a new repo combining the two formerly independent root folders under one common root: > repo …
Oblomov
  • 8,953
  • 22
  • 60
  • 106