Complete the code to start Jenkins with the setup wizard enabled.
java -jar jenkins.war --[1]The --enable-setup-wizard option starts Jenkins with the initial admin setup wizard enabled.
Complete the code to unlock Jenkins by providing the initial admin password file path.
cat [1]The initial admin password is stored in /var/lib/jenkins/secrets/initialAdminPassword. Reading this file lets you unlock Jenkins during setup.
Fix the error in the command to disable the Jenkins setup wizard.
java -jar jenkins.war --[1]The correct option to disable the setup wizard is --disable-setup-wizard with hyphens.
Complete the code to create a dictionary comprehension that maps plugin names to their versions, filtering only plugins with version greater than 1.0.
{plugin: version for plugin, version in plugins.items() if version [1] '1.0'}The dictionary comprehension maps each plugin to its version without modification (empty string for BLANK_1). The filter keeps plugins with version greater than '1.0' using >.
Fill all three blanks to create a dictionary comprehension that maps plugin names in uppercase to their versions, filtering only plugins with version equal to '2.0'.
{ [1]: [2] for plugin, version in plugins.items() if version [3] '2.0' }The dictionary comprehension uses plugin.upper() as the key, version as the value, and filters plugins where version == '2.0'.