return false;
}
+/* Code currently disabled */
+#if 0
if (mr->ActionOnPurge > 0) {
/* Send the command to truncate the volume after purge. If this feature
* is disabled for the specific device, this will be a no-op.
return false;
}
}
+#endif
pm_strcpy(jcr->VolumeName, mr->VolumeName);
generate_job_event(jcr, "VolumePurged");
*/
static bool action_on_purge_cmd(JCR *jcr)
{
- POOL_MEM devname;
- POOL_MEM volumename;
+ char devname[MAX_NAME_LENGTH];
+ char volumename[MAX_NAME_LENGTH];
BSOCK *dir = jcr->dir_bsock;
DEVICE *dev;
DCR *dcr;
int action;
- devname.check_size(dir->msglen+1);
- volumename.check_size(dir->msglen+1);
+ /* Currently disabled */
+ dir->fsend(_("3916 Feature action_on_purge currently disabled\n"));
- if (sscanf(dir->msg, "action_on_purge %127s vol=%s action=%d",
- devname.c_str(), volumename.c_str(), &action) != 3) {
+#if 0
+ /* TODO: Need to find a free device and ask for slot to the director */
+ if (sscanf(dir->msg,
+ "action_on_purge %127s vol=%127s action=%d",
+ devname.c_str(), volumename.c_str(), &action)!= 5)
+ {
dir->fsend(_("3916 Error scanning action_on_purge command\n"));
goto done;
}
- unbash_spaces(volumename.c_str());
- unbash_spaces(devname.c_str());
+ unbash_spaces(volumename);
+ unbash_spaces(devname);
+
+ /* Check if action is correct */
+ switch (action) {
+ case AOP_TRUNCTATE:
+ break;
+ default:
+ dir->fsend(_("3919 Bad ActionOnPurge\n"));
+ goto done;
+ }
+
+ /* TODO: Ask for Volume information
+ * - check recycle
+ * - find slot
+ */
/* FIXME: autochanger, drive = 0? how can we avoid that? we only work on
* files
} else {
dir->fsend(_("3918 Recycle failed\n"));
}
+#endif
done:
dir->signal(BNET_EOD);
#undef VERSION
#define VERSION "5.0.0"
-#define BDATE "26 January 2010"
-#define LSMDATE "26Jan10"
+#define BDATE "28 January 2010"
+#define LSMDATE "28Jan10"
#define PROG_COPYRIGHT "Copyright (C) %d-2010 Free Software Foundation Europe e.V.\n"
#define BYEAR "2010" /* year for copyright messages in progs */