Skip to content

Commit

Permalink
Fix inclusion of pakiti config
Browse files Browse the repository at this point in the history
This ensures that both the config and the RPMs are included, which wasn't the case before.
Fixes #28.
  • Loading branch information
jrha committed Aug 18, 2014
1 parent 6cbe074 commit 50aa6e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions features/pakiti/client/config.pan
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
unique template features/pakiti/client/config;

variable PAKITI_RPMS ?= if_exists('config/pakiti/client/config');
include if_exists('config/pakiti/client/config');
variable PAKITI_RPMS ?= 'features/pakiti/client/rpms';
include { PAKITI_RPMS };
include PAKITI_RPMS;

variable pakiti_conf = "servers_name = "+PAKITI_SERVER+":"+PAKITI_SERVER_PORT+"\n";
variable pakiti_conf = pakiti_conf+"server_url = "+PAKITI_SERVER_URL+"\n";
Expand Down

0 comments on commit 50aa6e9

Please sign in to comment.