| | |
| | | fileowner($mount_cmd) === 0 |
| | | ) { |
| | | if (!$this->is_mounted($backup_dir)){ |
| | | exec($backup_dir_mount_cmd); |
| | | exec($mount_cmd); |
| | | sleep(1); |
| | | if (!$this->is_mounted($backup_dir)) $mounted = false; |
| | | } |
| | |
| | | |
| | | return $mounted; |
| | | } |
| | | |
| | | |
| | | function umount_backup_dir($backup_dir, $mount_cmd = '/usr/local/ispconfig/server/scripts/backup_dir_umount.sh'){ |
| | | if ( is_file($mount_cmd) && |
| | | is_executable($mount_cmd) && |
| | | fileowner($mount_cmd) === 0 |
| | | ) { |
| | | if ($this->is_mounted($backup_dir)){ |
| | | exec($mount_cmd); |
| | | sleep(1); |
| | | } |
| | | } |
| | | |
| | | return $this->is_mounted($backup_dir) == 0 ? true : false; |
| | | } |
| | | |
| | | function getinitcommand($servicename, $action, $init_script_directory = ''){ |
| | | global $conf; |
| | | // upstart |