crudini icon indicating copy to clipboard operation
crudini copied to clipboard

A utility for manipulating ini files

Results 20 crudini issues
Sort by recently updated
recently updated
newest added

I'm trying to manipulate php-fpm config files. On php-fpm.conf, you have a `[global]` section, and at the end an `include=/etc/php/7.0/fpm/pool.d/*.conf`. These additionnal config files contains others section definition. Problem is,...

enhancement

While checking the root cause for https://github.com/pixelb/crudini/issues/85, I realized that crudini tries to lock a file before editing it. I presume the reason is to avoid getting an inconsistent file...

When running crudini with the `--set` flag, I'm unable to create a default section. Command: `crudini --set file.conf default name value` Result: ``` Traceback (most recent call last): File "/usr/local/bin/crudini",...

I'm very excited to find a great tool that I can use in this shell script right now. When I use this tool in a shell script to reference a...

\# 1: input file \# 2: Problem: 'get' for all doesn't gives all values: as.alma & av.alma are missing. \# 3-5: get works for the exact value. ```bash ~$ cat...

I'm trying to use `crudini` on wireguard's config used by `wg-quick`. There's a nice example of this file right on the main page: https://www.wireguard.com/ Let's repeat it here: ``` [Interface]...

enhancement

Add windows, linux python2.7 and pypy2.7 Add coverage support It is necessary to activate travis at to start testing. The windows build are possibly blocked because of #61 There are...

Configuration files use sometimes sections with double brackets (e.g. `[[graphite]]` in influxdb.conf or `[[servers]]` in ldap.toml for Grafana), but this syntax seems to be actually unsupported. Would it be possible...

I am trying to manipulate my Ansible hosts.ini files, which looks like this: ``` host1.example.com host2.example.com host3.example.com host4.example.com [group1] host1.example.com host2.example.com [group2] host3.example.com host4.example.com ``` When I want to get...

`krb.conf` file is mostly an ini file but it still have something that makes in incompatible with crudini: ``` [realms] EXAMPLE.COM = { kdc = kerberos.bos.example.com kdc = kerberos.corp.example.com default_domain...