Advertisement
Guest User

Untitled

a guest
Mar 20th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. 52 my $current_timestamp = (stat("/home/operations/zdesktop/conf/localconfig.xml"))[9];
  2. 53 system("\"/home/operations/zdesktop/bin/zdesktop\" start");
  3. 54 my $counter = 0;
  4. 55 my $file_updated = 0;
  5. 56 {
  6. 57 do{
  7. 58 my $new_timestamp = (stat("/home/operations/zdesktop/conf/localconfig.xml"))[9];
  8. 59 if($new_timestamp != $current_timestamp) {
  9. 60 $file_updated = 1;
  10. 61 last;
  11. 62 }
  12. 63 else {
  13. 64 sleep(2);
  14. 65 }
  15. 66 $counter = $counter + 1;
  16. 67 }while( $counter < 10 );
  17. 68 }
  18. 69 if($file_updated == 0) {
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement