Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. Template.body.helpers({
  2. myfile: function(){
  3. return myfile_contents;
  4. }
  5. });
  6.  
  7.  
  8.  
  9. if (Meteor.isServer) {
  10.  
  11. myfile: function(){
  12. var fs = Npm.require("fs");
  13. fs.readFile('/opt/SI/SIAgent/conf/SI_crontab','utf-8', function (err, data) {
  14. file_contents = data;
  15. });
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement