You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to change something in the <Directory "/var/www/html"> context, but the " are causing a 'problem', can't seem to select it. When the context is <Directory /var/www/html> it is working perfect:
apache_directive { "Options for html":
name => 'Options',
args => 'SymLinksIfOwnerMatch',
ensure => present,
context => 'Directory[arg="/var/www/html"]',
}
But trying to get the " in the context like this:
apache_directive { "Options for html":
name => 'Options',
args => 'SymLinksIfOwnerMatch',
ensure => present,
context => 'Directory[arg="\"/var/www/html\""]',
}
Makes Puppet change the context for the directory /
The text was updated successfully, but these errors were encountered:
I want to change something in the <Directory "/var/www/html"> context, but the " are causing a 'problem', can't seem to select it. When the context is <Directory /var/www/html> it is working perfect:
But trying to get the " in the context like this:
Makes Puppet change the context for the directory /
The text was updated successfully, but these errors were encountered: