Unsolved
This post is more than 5 years old
1 Rookie
•
70 Posts
0
2039
August 27th, 2019 04:00
Jobqueue
Hi, can anybody help me with the following problem i have?
i am trying to create a jobqueue for a LCC setting (LifeCycleController.LCAttributes.CollectSystemInventoryOnRestart) that i make in a script. i wnat to set this setting with the following command.
racadm -r -u -p set LifeCycleController.LCAttributes.CollectSystemInventoryOnRestart Enabled
and after that :
racadm -r -u -p set LifeCycleController.LCAttributes.LifecycleControllerState 1.
these commands succeed but then there needs to be a jobqueue created and i am not able to find the correct syntax for that.
i tried something like this:
racadm -r -u root -p jobqueue create LifeCycleController.LCAttributes -r pwrcycle -s TIME_NOW
But it keeps telling me that the FQDD is not correct. does anybody knows what the FQDD is here or how to find it?


Daniel My
10 Elder
•
6.2K Posts
0
August 27th, 2019 12:00
Hello
I don't think you need to or can create a jobqueue for the LifeCycle Controller. Jobqueues are for pending changes to components that cannot be changed without a restart. These are the groups that stage changes or have pending changes requiring job queues:
NIC, BIOS, FC, and Storage
If you run a get after the set changes to the LCC you should see the changed value returned.
http://www.dell.com/idracmanuals/
Thanks
TechnicalEngineeringKLM
1 Rookie
•
70 Posts
0
August 27th, 2019 23:00
Thx for the reply,
i just created a jobqueue for the BIOS setup now and saw that all pending settings were set after the reboot including the one of the LCC. so what i did was:
racadm -r -u root -p jobqueue create BIOS.Setup.1-1 -r pwrcycle -s TIME_NOW
this did the job for me. i was more struggling with the syntax of creating a jobqueue and reboot in one line i think after all.
thank you