Skip to content

Commit

Permalink
newline fixes and updated Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Crowe committed Oct 15, 2013
1 parent 9c7cced commit 159f4e1
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 23 deletions.
19 changes: 10 additions & 9 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
2013-10-15 - Version 0.1.0
2013-10-15 - v0.1.1

Fixes:

- Missing '=' in template tags when using certain parameters
- Added log file default to program define to avoid /tmp being used when not specified
- Fixed logic when not using environment variables in program


2013-10-15 - v0.1.0

Summary:

Expand All @@ -8,11 +17,3 @@ Completed basic module functionality for
- Configure programs
- Configure groups
- Install init scripts for RedHat and Debian families

ToDo:

- Complete fgcipragram functions and templates
- Complete eventlistener functions and templates
- Write spec tests


8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,7 @@ supervisord::group { 'mygroup':
}
```

### ToDo

* eventlistener template and function
* fcgiprogram template and function
* Write spec tests for custom functions

### Credits

* Debian init script sourced from the system package.
* RedHat/Centos init script sourced from https://github.com/Supervisor/initscripts
* RedHat/Centos init script sourced from https://github.com/Supervisor/initscripts
2 changes: 1 addition & 1 deletion manifests/config.pp
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@
content => template('supervisord/supervisord_main.erb'),
order => 02
}
}
}
2 changes: 1 addition & 1 deletion manifests/fcgi_program.pp
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@
content => template('supervisord/conf/fcgi_program.erb'),
notify => Class['supervisord::service']
}
}
}
2 changes: 1 addition & 1 deletion manifests/group.pp
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
mode => '0755',
content => template('supervisord/conf/group.erb')
}
}
}
2 changes: 1 addition & 1 deletion manifests/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
ensure => "$package_ensure",
provider => 'pip'
}
}
}
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@
$install_init = false
}
}
}
}
2 changes: 1 addition & 1 deletion manifests/pip.pp
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
unless => 'which pip-python'
}
}
}
}
2 changes: 1 addition & 1 deletion manifests/service.pp
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
hasrestart => true,
hasstatus => true
}
}
}

0 comments on commit 159f4e1

Please sign in to comment.