Skip to content

Commit aea8a24

Browse files
committed
fixup! fixup! fixup! fixup! fixup! Make provider upgradable; Add logic to correctly switch between channels
1 parent 997f410 commit aea8a24

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/puppet/provider/package/snap.rb

+4-1
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,16 @@ def query
2929
end
3030

3131
def install
32-
current_ensure = query&.get(:ensure)
32+
current_ensure = query&.dig(:ensure)
3333
current_ensure ||= :absent
3434

35+
Puppet.info(current_ensure)
3536
# Refresh the snap if we changed the channel
3637
if current_ensure != @resource[:ensure] && current_ensure != :absent
38+
Puppet.info('modify snap')
3739
modify_snap('refresh') # Refresh will switch the channel AND trigger a refresh immediately. TODO Implement switch?
3840
else
41+
Puppet.info('install snap')
3942
modify_snap('install')
4043
end
4144
end

0 commit comments

Comments
 (0)